/* ==========================================
   COSTA LIBERTAD — Premium Website Styles
   Las Lajas, Chiriquí, Panama
   ========================================== */

/* === CSS VARIABLES === */
:root {
  --teal-dark: #0a3d2e;
  --teal: #0d5e45;
  --teal-light: #1a7a5a;
  --gold: #c8a45c;
  --gold-light: #e0c87a;
  --gold-dark: #a8864a;
  --cream: #faf6ef;
  --sand: #f0e8d8;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --ocean: #1a6b8a;
  --ocean-light: #2a9bc0;
  --coral: #e07a5f;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === 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);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }

.subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 164, 92, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.5);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 61, 46, 0.3);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 61, 46, 0.4);
}

.btn-arrow::after { content: none; }
.btn-arrow svg {
  transition: transform 0.3s;
}
.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 61, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img {
  height: 50px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}

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

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dark);
}

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

.hero-bg img,
.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 46, 0.85) 0%,
    rgba(10, 61, 46, 0.6) 40%,
    rgba(10, 61, 46, 0.3) 70%,
    rgba(10, 61, 46, 0.5) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  padding: 0 2rem;
  margin-left: 8%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

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

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(10, 61, 46, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200, 164, 92, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* === SECTIONS GENERAL === */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--teal-dark);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* === VISION SECTION === */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  min-height: 520px;
}

.vision-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 164, 92, 0.3);
}

.vision-text h2 {
  margin-bottom: 1.5rem;
}

.vision-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.vision-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vision-feature .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.vision-feature h4 {
  margin-bottom: 0.25rem;
}

.vision-feature p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* === FEATURES / HIGHLIGHTS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.08), rgba(10, 61, 46, 0.03));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2px;
  flex-shrink: 0;
}

.lang-switcher a {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  line-height: 1;
}

.lang-switcher a:hover {
  color: var(--white);
}

.lang-switcher a.active {
  background: var(--gold);
  color: var(--white);
}

.lang-switcher a::after {
  display: none;
}

/* === INFRASTRUCTURE === */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.infra-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(200, 164, 92, 0.2);
}

.infra-image {
  height: 220px;
  overflow: hidden;
}

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

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

.infra-content {
  padding: 2rem;
}

.infra-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.infra-content h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.infra-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.infra-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.infra-features li {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding-left: 1.5rem;
  position: relative;
}

.infra-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.infra-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.infra-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.infra-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .infra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .infra-stats {
    gap: 1.5rem;
  }
  .infra-stat-number {
    font-size: 2rem;
  }
}

/* === LOTS / GRUNDSTÜCKE === */
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lot-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  position: relative;
}

.lot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lot-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}

.lot-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.lot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.lot-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.lot-image img,
.lot-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.lot-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.lot-card:hover .lot-image img,
.lot-card:hover .lot-image svg {
  transform: scale(1.08);
}

.lot-content {
  padding: 2rem;
}

.lot-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lot-size {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.lot-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lot-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.lot-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

.lot-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.lot-price .from {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.lot-price .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.lot-price .currency {
  font-size: 0.9rem;
  color: var(--gray);
}

/* === MASTERPLAN === */
.masterplan-section {
  position: relative;
}

.masterplan-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.masterplan-wrapper svg,
.masterplan-wrapper img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masterplan-wrapper:hover img {
  transform: scale(1.03);
}

/* === LIFESTYLE GRID === */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.lifestyle-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.lifestyle-item img,
.lifestyle-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.lifestyle-item:hover img,
.lifestyle-item:hover svg {
  transform: scale(1.1);
}

.lifestyle-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  transition: opacity 0.3s;
}

.lifestyle-item .caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.lifestyle-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* === LOCATION / STANDORT === */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background: var(--sand);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details h3 {
  margin-bottom: 1.5rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(200, 164, 92, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.location-item strong {
  display: block;
  font-size: 0.95rem;
}

.location-item span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* === VISA INFO === */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.visa-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.visa-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.visa-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.visa-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.visa-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.visa-tag {
  display: inline-block;
  background: rgba(200, 164, 92, 0.2);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: var(--font-heading);
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  color: var(--gray);
  font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* === CONTACT FORM === */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

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

/* === FOOTER === */
.footer {
  background: #081c15;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

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

.footer-brand img {
  height: 45px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

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

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

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* === COUNTER ANIMATION === */
.counter {
  display: inline-block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid,
  .lots-grid,
  .visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vision-image,
  .vision-image img {
    min-height: 350px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

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

@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 61, 46, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .features-grid,
  .lots-grid,
  .visa-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lifestyle-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-row {
    flex-direction: column;
  }

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

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

  .section {
    padding: 4rem 0;
  }
}

/* === COOKIE HINT (minimal) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 61, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner button {
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}

/* === PAGE TRANSITIONS === */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* === LOADING SCREEN === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

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

.loader-logo {
  height: 60px;
  margin-bottom: 2rem;
  animation: pulse-logo 2s infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-inner {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: load-bar 1.5s ease-out forwards;
}

@keyframes load-bar {
  to { width: 100%; }
}

/* === SMOOTH SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce-scroll 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

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

/* === COMMUNITY LIFE RENDER === */
.community-render-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.community-render-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-render-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.community-render-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.community-render-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .community-render-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .community-render-item img {
    min-height: 200px;
  }
}

/* PROMO VIDEO */
.promo-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.promo-video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.promo-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
  letter-spacing: 0.02em;
}

/* TARGET GROUPS / FÜR WEN */
.target-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.target-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.target-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

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

.target-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
}

.target-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.target-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 968px) {
  .target-groups-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
