/* ============================================
   SENEGAL LUXURY REAL ESTATE - Design System
   Color Palette: White, Green, Yellow
   ============================================ */

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

/* === CSS Variables === */
:root {
  --green-primary: #00c853;
  --green-dark: #1b5e20;
  --green-deeper: #0a3d0a;
  --green-light: #b9f6ca;
  --green-glow: rgba(0, 200, 83, 0.4);
  --yellow-primary: #ffd600;
  --yellow-dark: #ffab00;
  --yellow-light: #fff9c4;
  --yellow-glow: rgba(255, 214, 0, 0.4);
  --white: #ffffff;
  --off-white: #f5f7f5;
  --light-gray: #e8ece8;
  --dark: #0d1b0d;
  --dark-card: #112211;
  --text-dark: #1a2e1a;
  --text-muted: #5a6e5a;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.15);
  --shadow-glow-green: 0 0 40px rgba(0,200,83,0.2);
  --shadow-glow-yellow: 0 0 40px rgba(255,214,0,0.2);
  --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-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* === Custom Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-primary), var(--yellow-primary));
  border-radius: 4px;
}

/* === Selection === */
::selection {
  background: var(--green-primary);
  color: var(--white);
}

/* === Utility === */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(255,214,0,0.1));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* === Animated Background Orbs === */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--green-primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--yellow-primary);
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.bg-orb:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--green-light);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.9); }
  75% { transform: translate(-60px, -30px) scale(1.05); }
}

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,200,83,0.1);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: var(--shadow-glow-green);
  animation: logoPulse 3s ease-in-out infinite;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-glow-green);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,200,83,0.2); }
  50% { box-shadow: 0 0 40px rgba(0,200,83,0.4); }
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.nav-logo-text span {
  color: var(--green-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--green-primary);
  background: rgba(0,200,83,0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  box-shadow: var(--shadow-glow-green);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,83,0.4) !important;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* === BANNERS SECTION === */
.banners-section {
  padding: 24px 0 26px;
  position: relative;
  z-index: 1;
}

.banners-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,200,83,0.12);
  background: #0f180f;
}

.banner-track {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  width: 100%;
  animation: fadeInUp 0.45s ease;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banners-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,22,9,0.38), rgba(9,22,9,0.06));
  pointer-events: none;
  z-index: 1;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(10,20,10,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}

.banner-nav:hover {
  background: rgba(0,200,83,0.85);
  border-color: rgba(0,200,83,0.95);
}

.banner-prev {
  left: 14px;
}

.banner-next {
  right: 14px;
}

.banner-nav svg {
  width: 20px;
  height: 20px;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition-fast);
}

.banner-dot.active {
  width: 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 40%, rgba(185,246,202,0.2) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('images/facade1.jpg') center/cover;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
  opacity: 0.85;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
  background: linear-gradient(135deg, rgba(0,200,83,0.3), rgba(255,214,0,0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 45%;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
}

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

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(0,200,83,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,200,83,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(0,200,83,0.04);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat-icon {
  color: var(--green-primary);
  margin-bottom: 6px;
  animation: iconFloat 3s ease-in-out infinite;
}

.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-primary);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Floating Elements */
.hero-floating {
  position: absolute;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

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

.float-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,200,83,0.1);
}

.float-card-1 {
  bottom: 15%;
  right: 8%;
  animation-delay: -2s;
}

.float-card-2 {
  top: 25%;
  right: 5%;
  animation-delay: -4s;
}

.float-card .fc-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.float-card .fc-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.float-card .fc-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

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

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

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

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

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

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(0,200,83,0.3)); }
  50% { filter: drop-shadow(0 0 10px rgba(0,200,83,0.6)); }
}

/* Animated Icon Styles */
.icon-animated {
  display: inline-flex;
  animation: iconPulse 2.5s ease-in-out infinite;
}

.icon-animated svg,
.about-feature-icon svg,
.contact-info-icon svg,
.fc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-primary);
  animation: iconGlow 3s ease-in-out infinite;
}

.about-feature-icon {
  animation: iconFloat 4s ease-in-out infinite;
}

.about-feature:nth-child(2) .about-feature-icon {
  animation-delay: -1.5s;
}

.about-feature:nth-child(3) .about-feature-icon {
  animation-delay: -3s;
}

.fc-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-primary);
}

.contact-info-icon {
  animation: iconFloat 3.5s ease-in-out infinite;
}

.contact-info-card:nth-child(2) .contact-info-icon {
  animation-delay: -1s;
}

.contact-info-card:nth-child(3) .contact-info-icon {
  animation-delay: -2s;
}

.contact-info-card:nth-child(4) .contact-info-icon {
  animation-delay: -3s;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--yellow-primary);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  transition: stroke var(--transition-fast);
}

.footer-social-link:hover svg {
  stroke: var(--dark-card);
}

/* === ABOUT / FEATURES SECTION === */
.about-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(255,214,0,0.1));
  border-radius: var(--radius-lg);
}

.about-accent-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--yellow-primary));
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
  z-index: 2;
  box-sizing: border-box;
}

.about-accent-box .aab-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
}

.about-accent-box .aab-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* === ABOUT / FEATURES PREMIUM REDESIGN === */
.about-features-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 36px;
}

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

.feature-premium-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,200,83,0.08);
  transition: all var(--transition-smooth);
}

.feature-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,200,83,0.3);
  background: linear-gradient(135deg, var(--white), rgba(0,200,83,0.03));
}

.feature-premium-card .fpc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(255,214,0,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: iconFloat 4s ease-in-out infinite;
}

.feature-premium-card .fpc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-primary);
}

.feature-premium-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.partners-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deeper));
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,214,0,0.2);
  box-shadow: var(--shadow-md);
}

.partners-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-primary);
}

.partner-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.partner-row .pr-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-row .pr-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow-primary);
}

.partner-row p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
  padding-top: 6px;
}

.partner-row p strong {
  color: var(--white);
  font-weight: 600;
}

/* === PROPERTIES SECTION === */
.properties-section {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}

.properties-header {
  text-align: center;
  margin-bottom: 50px;
}

.properties-header .section-subtitle {
  margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 12px 28px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}

/* Property Cards */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
}

.property-card.hidden {
  display: none;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,200,83,0.15);
}

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

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-badge.new {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
}

.property-badge.premium {
  background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
  color: var(--dark);
}

.property-badge.exclusive {
  background: linear-gradient(135deg, var(--dark), #333);
  color: white;
}

.property-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.property-price .currency {
  color: var(--yellow-primary);
  font-size: 0.85rem;
}

.property-card-body {
  padding: 24px;
}

.property-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  box-shadow: 0 8px 22px rgba(0,200,83,0.22);
  transition: var(--transition-smooth);
}

.property-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,200,83,0.35);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.property-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.property-features {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

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

.property-feature .pf-icon {
  font-size: 1rem;
}

/* === MAP SECTION === */
.map-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.map-section .section-subtitle {
  margin: 0 auto;
}

.map-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.map-tab {
  padding: 12px 28px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-tab:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.map-tab.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}

.map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0,200,83,0.1);
}

#main-map {
  width: 100%;
  height: 550px;
  z-index: 1;
}

.map-overlay-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  z-index: 500;
  max-width: 280px;
  border: 1px solid rgba(0,200,83,0.1);
}

.map-overlay-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.map-overlay-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === BEFORE/AFTER GALLERY === */
.gallery-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-section .section-badge {
  background: rgba(0,200,83,0.15);
  border-color: rgba(0,200,83,0.25);
  color: var(--green-light);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.gallery-section .section-subtitle {
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
}

.comparison-slider .before-img,
.comparison-slider .after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider .before-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.comparison-slider .after-img {
  z-index: 1;
}

.comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--green-primary);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0,200,83,0.5);
}

.comparison-slider .slider-handle::before {
  content: '◄ ►';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  letter-spacing: 4px;
  box-shadow: 0 0 30px rgba(0,200,83,0.5);
}

.comparison-label {
  position: absolute;
  bottom: 16px;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}

.comparison-label.before-label {
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: white;
}

.comparison-label.after-label {
  right: 16px;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  color: white;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

/* === ADHESION MODAL === */
.adhesion-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.adhesion-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.adhesion-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 13, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.adhesion-modal-content {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  padding: 28px;
}

.adhesion-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.adhesion-modal-header .section-subtitle {
  margin: 0 auto;
}

.adhesion-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.adhesion-modal-close:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

.adhesion-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: inset 0 0 0 1px var(--light-gray);
}

.adhesion-project-line {
  margin-bottom: 18px;
}

.adhesion-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.adhesion-check input {
  margin-top: 5px;
}

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

.testimonials-section .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,200,83,0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(255,214,0,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.testimonial-stars {
  color: var(--yellow-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* === CONTACT SECTION === */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--off-white) 0%, rgba(185,246,202,0.15) 100%);
  position: relative;
  z-index: 1;
}

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

.contact-info-cards {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: rgba(0,200,83,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(255,214,0,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,200,83,0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,200,83,0.45);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
}

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

.footer-brand-text {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 20px;
}

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

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
  transform: translateY(-4px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

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

.footer-bottom a {
  color: var(--green-primary);
  text-decoration: none;
}

/* === SCROLL-REVEAL ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* === Particle Grid Background === */
.particle-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0,200,83,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
  }

  .hero::before,
  .hero::after { display: none; }
  
  .hero-content { max-width: 100%; }
  .hero-floating { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .hero-title { font-size: 2.4rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .banners-section { padding: 14px 0 22px; }
  .banner-dots { bottom: 10px; gap: 8px; }
  .banner-dot { width: 8px; height: 8px; }
  .banner-dot.active { width: 20px; }
  .adhesion-modal-content { padding: 22px 14px; }
  .adhesion-form { padding: 18px 12px; }
}

/* === Loading Screen === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loader-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,200,83,0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 40px 20px rgba(0,200,83,0); }
}

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

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--yellow-primary));
  border-radius: 2px;
  animation: loaderFill 1.5s ease-in-out forwards;
}

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

/* === Interactive card glow effect === */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary), var(--green-primary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}

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

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Leaflet custom popup */
.leaflet-popup-content-wrapper {
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(0,200,83,0.1) !important;
}

.leaflet-popup-content {
  margin: 16px 20px !important;
  font-family: var(--font-body) !important;
}

.popup-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.popup-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.popup-content .popup-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-primary);
}

.popup-content img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ===========================
   FUTURISTIC MAP MODAL
   =========================== */
.futuristic-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.futuristic-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 13, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(17, 34, 17, 0.95);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 50px rgba(0, 200, 83, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.futuristic-modal.active .modal-content-wrapper {
  transform: scale(1) translateY(0);
}

/* Hologram Scanning Line */
.modal-hologram-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 200, 83, 0) 0%, rgba(0, 200, 83, 0.05) 50%, rgba(0, 200, 83, 0) 100%);
  background-size: 100% 200%;
  animation: hologramScan 4s linear infinite;
  pointer-events: none;
  z-index: 10;
}

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

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: rotate(90deg);
}

.modal-body-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-body-content {
    flex-direction: row;
  }
}

.modal-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .modal-image-container {
    width: 45%;
    height: auto;
    min-height: 100%;
  }
}

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

.modal-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 34, 17, 1) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .modal-image-container::after {
    background: linear-gradient(to left, rgba(17, 34, 17, 1) 0%, transparent 100%);
  }
}

.modal-status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 200, 83, 0.2);
  border: 1px solid var(--green-primary);
  color: var(--green-light);
  padding: 6px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
  animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 200, 83, 0.4); }
  50% { box-shadow: 0 0 25px rgba(0, 200, 83, 0.8); }
}

.modal-details {
  padding: 24px;
  text-align: left;
  flex: 1;
}

@media (min-width: 768px) {
  .modal-details {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Subscription UI */
.modal-subscription {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-open {
  background: rgba(0, 200, 83, 0.2);
  color: var(--green-light);
  border: 1px solid var(--green-primary);
}

.badge-closed {
  background: rgba(255, 59, 48, 0.2);
  color: #ff8a80;
  border: 1px solid #ff5252;
}

.badge.hidden {
  display: none !important;
}

.subscription-stats {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-current {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.subscription-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--yellow-primary));
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

.progress-bar.closed {
  background: linear-gradient(90deg, #ff5252, #d50000);
}

.btn-adherer {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25);
}

.btn-adherer:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 200, 83, 0.4);
}

.btn-adherer:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

.modal-city {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.modal-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-primary);
}

/* ============================================
   MOCT'ART INFO CARD
   ============================================ */
.moctart-info-card {
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,200,83,0.12);
  border-top: 4px solid var(--green-primary);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.moctart-info-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,200,83,0.08), transparent 70%);
  pointer-events: none;
}
.moctart-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,200,83,0.12);
}

.mic-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mic-icon-wrap {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: iconPulse 3s ease-in-out infinite;
}
.mic-icon-wrap svg {
  width: 18px; height: 18px;
  stroke: white;
}
.mic-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.mic-location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 14px 0;
  line-height: 1.6;
}
.mic-location svg {
  width: 14px; height: 14px;
  stroke: var(--green-primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.mic-location strong { color: var(--text-dark); }

.mic-rooms-grid {
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.mic-rooms-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.mic-rooms-label svg {
  width: 13px; height: 13px;
  stroke: var(--green-primary);
}
.mic-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mic-room {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mic-room svg {
  width: 13px; height: 13px;
  stroke: var(--green-primary);
  flex-shrink: 0;
}
.mic-room:hover { color: var(--text-dark); }

.mic-prices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.mic-price-card {
  flex: 1;
  min-width: 120px;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  transition: transform 0.3s ease;
}
.mic-price-card:hover { transform: scale(1.03); }
.mic-price-card.green {
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,83,0.04));
  border: 1px solid rgba(0,200,83,0.2);
}
.mic-price-card.yellow {
  background: linear-gradient(135deg, rgba(255,214,0,0.12), rgba(255,214,0,0.04));
  border: 1px solid rgba(255,214,0,0.3);
}
.mic-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mic-price-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}
.mic-price-card.green .mic-price-value { color: var(--green-dark); }
.mic-price-card.yellow .mic-price-value { color: #9a6d00; }
.mic-price-value span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.7;
}

.mic-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  padding-top: 6px;
  border-top: 1px solid var(--light-gray);
}
.mic-footer svg {
  width: 14px; height: 14px;
  stroke: var(--green-primary);
  animation: iconFloat 3s ease-in-out infinite;
}

/* ============================================
   RICH ANIMATIONS
   ============================================ */

/* Slide in from sides */
@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 slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0); }
  50%       { box-shadow: 0 0 20px 6px rgba(0,200,83,0.18); }
}
@keyframes borderSlide {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
@keyframes shimmerMove {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes bounceTiny {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* AOS-like classes */
[data-aos="fade-up"]    { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-left"]  { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="zoom-in"]    { opacity: 0; transform: scale(0.85); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* Feature cards: animated border on hover */
.feature-premium-card {
  position: relative;
  overflow: hidden;
}
.feature-premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.feature-premium-card:hover::before { left: 150%; }

/* Property cards: shimmer effect */
.property-card {
  position: relative;
  overflow: hidden;
}
.property-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmerMove 3s infinite;
  pointer-events: none;
}

/* Section badges: pop in + glow */
.section-badge {
  animation: popIn 0.6s ease both;
  transition: box-shadow 0.3s ease;
}
.section-badge:hover {
  animation: glowPulse 1.5s ease-in-out infinite;
}

/* Navbar links: underline slide */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after {
  width: 60%;
  left: 20%;
}

/* Testimonials: lift + glow */
.testimonial-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,200,83,0.12);
}

/* Buttons: shine sweep */
.btn-primary, .btn-secondary, .property-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-secondary::before, .property-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::before, .btn-secondary:hover::before, .property-cta:hover::before {
  left: 130%;
}

/* Icon bounce on feature cards */
.feature-premium-card:hover .fpc-icon {
  animation: bounceTiny 0.6s ease;
}

/* Partner section card: animated left border */
.moctart-info-card {
  border-top: 4px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(90deg, var(--green-primary), var(--yellow-primary)) 1;
}

/* Map tab buttons: animated underline */
.map-tab, .filter-tab {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease;
}
.map-tab::after, .filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}
.map-tab.active::after, .filter-tab.active::after,
.map-tab:hover::after, .filter-tab:hover::after {
  width: 80%; left: 10%;
}

/* ============================================
   FUTURISTIC PROPERTY CARD (fpc-card)
   ============================================ */

@keyframes scanline {
  0%   { top: -5%; opacity: 0.5; }
  50%  { opacity: 0.2; }
  100% { top: 105%; opacity: 0; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0.5); transform: scale(1); }
  50%       { box-shadow: 0 0 0 6px rgba(0,200,83,0); transform: scale(1.15); }
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,200,83,0.08), 0 0 0 1px rgba(0,200,83,0.1); }
  50%       { box-shadow: 0 16px 60px rgba(0,200,83,0.16), 0 0 0 1px rgba(0,200,83,0.2); }
}
@keyframes ctaShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}

.fpc-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,200,83,0.12);
  animation: cardGlow 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.fpc-card:hover {
  transform: translateY(-6px);
}

/* Header Title */
.fpc-header-title {
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fpc-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.fpc-main-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.fpc-main-subtitle svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

/* Image */
.fpc-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.fpc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.fpc-card:hover .fpc-img-wrap img {
  transform: scale(1.06);
}

/* Scanline */
.fpc-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.6), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

/* Image overlay gradient */
.fpc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(10,30,10,0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Badge: Programme Ouvert (top-left) */
.fpc-badge-status {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.fpc-dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

/* Badge: surface (top-right) */
.fpc-badge-surface {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.fpc-badge-surface svg {
  width: 13px; height: 13px;
  stroke: var(--green-primary);
}

/* Footer overlay on image */
.fpc-img-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 18px 20px 14px;
}
.fpc-img-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.fpc-img-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.fpc-img-loc svg {
  width: 12px; height: 12px;
  stroke: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* Body */
.fpc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Location note */
.fpc-location-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fpc-loc-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,83,0.04));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.fpc-loc-icon svg {
  width: 14px; height: 14px;
  stroke: var(--green-primary);
}
.fpc-location-note p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 4px 0 0;
}
.fpc-location-note p strong { color: var(--text-dark); }

/* Divider */
.fpc-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--green-primary), transparent 80%);
  opacity: 0.2;
}

/* Label row */
.fpc-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-dark);
}
.fpc-label-row svg {
  width: 13px; height: 13px;
  stroke: var(--green-primary);
}

/* Rooms grid */
.fpc-rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fpc-room {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid rgba(0,200,83,0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.fpc-room:hover {
  background: rgba(0,200,83,0.06);
  border-color: rgba(0,200,83,0.18);
}
.fpc-room-icon {
  width: 24px; height: 24px;
  background: rgba(0,200,83,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fpc-room-icon svg {
  width: 12px; height: 12px;
  stroke: var(--green-primary);
}
.fpc-room span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}
.fpc-room strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 1px;
}

/* Prices */
.fpc-prices-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fpc-price {
  flex: 1;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  transition: transform 0.3s ease;
}
.fpc-price:hover { transform: scale(1.03); }
.fpc-price.green {
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,200,83,0.03));
  border: 1px solid rgba(0,200,83,0.2);
}
.fpc-price.yellow {
  background: linear-gradient(135deg, rgba(255,214,0,0.1), rgba(255,214,0,0.03));
  border: 1px solid rgba(255,214,0,0.3);
}
.fpc-price-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.fpc-price-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}
.fpc-price.green .fpc-price-num { color: var(--green-dark); }
.fpc-price.yellow .fpc-price-num { color: #8a5f00; }
.fpc-price-cur {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}
.fpc-price-sep {
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.fpc-price-sep svg {
  width: 16px; height: 16px;
  stroke: var(--text-muted);
}

/* Payment row */
.fpc-payment-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 8px 12px;
  border-radius: 8px;
}
.fpc-payment-row svg {
  width: 14px; height: 14px;
  stroke: var(--green-primary);
}
.fpc-payment-row strong { color: var(--green-dark); }
.fpc-payment-badge {
  margin-left: auto;
  background: rgba(0,200,83,0.12);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 50px;
}

/* CTA button */
.fpc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,200,83,0.25);
}
.fpc-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.fpc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,200,83,0.35);
}
.fpc-cta-btn:hover::before { left: 130%; }
.fpc-cta-btn svg {
  width: 16px; height: 16px;
  stroke: white;
}
.fpc-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.fpc-cta-btn:hover .fpc-arrow {
  transform: translateX(4px);
}

/* ============================================
   IMAGE ACTION BUTTONS
   ============================================ */
.fpc-img-actions {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.fpc-img-wrap:hover .fpc-img-actions {
  opacity: 1;
  pointer-events: all;
}
.fpc-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.fpc-action-btn svg { width: 15px; height: 15px; stroke: var(--text-dark); }
.fpc-action-btn:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.fpc-action-btn--tour {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border-color: transparent;
}
.fpc-action-btn--tour svg { stroke: white; }
.fpc-action-btn--tour:hover {
  background: linear-gradient(135deg, #00e676, var(--green-primary));
}

/* ============================================
   LIGHTBOX FULLSCREEN
   ============================================ */
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lb-modal.open { display: flex; animation: lbFadeIn 0.3s ease; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lb-content {
  position: relative; z-index: 1;
  animation: lbZoomIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
  max-width: min(95vw, 1100px);
  max-height: 95vh;
}
.lb-img {
  display: block;
  max-width: 100%; max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lb-close {
  position: absolute; top: -16px; right: -16px;
  width: 40px; height: 40px;
  background: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.lb-close:hover { transform: scale(1.1) rotate(90deg); }
.lb-close svg { width: 18px; height: 18px; stroke: var(--text-dark); }
.lb-caption {
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.85rem; margin-top: 12px; letter-spacing: 0.5px;
}

/* ============================================
   VIRTUAL TOUR MODAL
   ============================================ */
@keyframes vtFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes vtSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vtContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vtProgress {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes vtKenBurns {
  0%   { transform: scale(1) translate(0,0); }
  25%  { transform: scale(1.08) translate(-1%,-1%); }
  50%  { transform: scale(1.12) translate(1%, 0.5%); }
  75%  { transform: scale(1.06) translate(-0.5%, 1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.vt-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none;
  align-items: stretch;
  justify-content: center;
}
.vt-modal.open { display: flex; animation: vtFadeIn 0.3s ease; }
.vt-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,5,0,0.88);
  backdrop-filter: blur(10px);
}
.vt-container {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  padding: 16px;
  animation: vtSlideUp 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

/* Header */
.vt-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}
.vt-header-left { display: flex; align-items: center; gap: 12px; }
.vt-header-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.vt-header-icon svg { width: 18px; height: 18px; stroke: white; }
.vt-header-title { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: white; }
.vt-header-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 1px; }
.vt-autoplay-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,83,0.15); border: 1px solid rgba(0,200,83,0.3);
  color: #69f0ae; border-radius: 50px; padding: 6px 16px;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
}
.vt-autoplay-btn svg { width: 13px; height: 13px; stroke: #69f0ae; }
.vt-autoplay-btn.playing {
  background: rgba(0,200,83,0.25); border-color: rgba(0,200,83,0.5);
}
.vt-autoplay-btn:hover { background: rgba(0,200,83,0.25); }

/* Close */
.vt-close {
  position: absolute; top: 24px; right: 24px; z-index: 10;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.vt-close svg { width: 16px; height: 16px; stroke: white; }
.vt-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

/* Scene */
.vt-scene-wrap {
  flex: 1; position: relative;
  border-radius: 16px; overflow: hidden;
  min-height: 380px;
  perspective: 1200px;
}
.vt-scene {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.12s ease;
}

/* Slide */
.vt-slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s;
  overflow: hidden;
  border-radius: 16px;
}
.vt-slide.active {
  opacity: 1;
  pointer-events: all;
}
.vt-slide.entering {
  animation: vtSlideEnter 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vt-slide.leaving {
  animation: vtSlideLeave 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes vtSlideEnter {
  from { opacity: 0; transform: translateX(80px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes vtSlideLeave {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(-80px) scale(0.96); }
}

/* BG with Ken Burns */
.vt-slide-bg {
  position: absolute; inset: -10%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: vtKenBurns 12s ease-in-out infinite alternate;
  will-change: transform;
}
.vt-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,20,5,0.75), rgba(0,60,20,0.5));
}
.vt-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  animation: vtContentIn 0.5s ease 0.15s both;
}
.vt-room-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,83,0.15);
  border: 1px solid rgba(0,200,83,0.35);
  color: #69f0ae;
  border-radius: 50px; padding: 4px 14px;
  font-size: 0.75rem; font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.vt-room-badge svg { width: 12px; height: 12px; }
.vt-badge-green { background: rgba(0,200,83,0.2); border-color: rgba(0,200,83,0.4); color: #b9f6ca; }
.vt-room-title {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  color: white; margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.vt-room-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  line-height: 1.6; max-width: 540px; margin-bottom: 16px;
}
.vt-room-specs {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.vt-spec {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 6px 12px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.vt-spec svg { width: 13px; height: 13px; stroke: #69f0ae; flex-shrink: 0; }

/* Tilt hint */
.vt-tilt-hint {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 5px 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.5s;
}
.vt-tilt-hint svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); }
.vt-tilt-hint.hidden { opacity: 0; }

/* Navigation */
.vt-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 14px;
}
.vt-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.vt-nav-btn svg { width: 18px; height: 18px; stroke: white; }
.vt-nav-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.vt-dots { display: flex; gap: 8px; align-items: center; }
.vt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.vt-dot.active {
  background: var(--green-primary);
  box-shadow: 0 0 8px rgba(0,200,83,0.5);
  width: 22px; border-radius: 4px;
}

/* Floor tabs */
.vt-floors {
  display: flex; gap: 8px; margin-top: 12px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.vt-floors::-webkit-scrollbar { display: none; }
.vt-floor-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: 50px; padding: 7px 16px;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  white-space: nowrap; cursor: pointer; transition: all 0.25s;
}
.vt-floor-btn svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.5); }
.vt-floor-btn:hover {
  background: rgba(255,255,255,0.15); color: white;
}
.vt-floor-btn.active {
  background: rgba(0,200,83,0.2);
  border-color: rgba(0,200,83,0.4);
  color: #b9f6ca;
}
.vt-floor-btn.active svg { stroke: #69f0ae; }

/* Progress bar on active slide */
.vt-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--yellow-primary));
  border-radius: 0 3px 3px 0;
  width: 0%;
}
.vt-progress.running {
  animation: vtProgress 5s linear forwards;
}

@media (max-width: 640px) {
  .vt-room-title { font-size: 1.4rem; }
  .vt-slide-content { padding: 16px; }
  .vt-room-specs { gap: 8px; }
}

/* ============================================
   PARTNER SECTION RESPONSIVE
   ============================================ */
.partner-card {
  background: white; 
  border-radius: 24px; 
  padding: 48px 56px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
  border: 1px solid rgba(0,200,83,0.1); 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 40px;
}

.partner-info {
  display: flex; 
  align-items: center; 
  gap: 32px; 
  flex: 1; 
  min-width: 280px;
}

.partner-logo {
  min-width: 90px; 
  height: 90px; 
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(27,94,32,0.08)); 
  border-radius: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border: 2px solid rgba(0,200,83,0.2);
}

.partner-title {
  font-family: var(--font-heading); 
  font-size: 2rem; 
  font-weight: 900; 
  color: var(--text-dark); 
  margin: 0 0 6px 0; 
  line-height: 1;
}

.partner-desc {
  color: var(--text-muted); 
  font-size: 1rem; 
  margin: 0 0 16px 0; 
  max-width: 420px; 
  line-height: 1.6;
}

.partner-tags {
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px;
}

.partner-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  background: rgba(0,200,83,0.1); 
  color: var(--green-dark); 
  padding: 5px 14px; 
  border-radius: 50px; 
  font-size: 0.8rem; 
  font-weight: 600;
}

.partner-cta-wrap {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px; 
  text-align: center;
}

.partner-cta {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  padding: 16px 36px; 
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)); 
  color: white; 
  text-decoration: none; 
  border-radius: 50px; 
  font-weight: 700; 
  font-family: var(--font-heading); 
  font-size: 1rem; 
  box-shadow: 0 8px 30px rgba(0,200,83,0.3); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  white-space: nowrap;
}
.partner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,200,83,0.4);
}

.partner-cta-link {
  font-size: 0.78rem; 
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .partner-card {
    padding: 32px 24px;
    gap: 32px;
  }
  .partner-info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    min-width: 100%;
  }
  .partner-desc {
    max-width: 100%;
  }
  .partner-tags {
    justify-content: center;
  }
  .partner-cta-wrap {
    width: 100%;
  }
  .partner-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partner-card {
    padding: 24px 16px;
  }
  .partner-title {
    font-size: 1.6rem;
  }
}
