/* ===== VARIABLES ===== */
:root {
  --primary: #7DEF00;
  --primary-dark: #66CC00;
  --primary-glow: rgba(125, 239, 0, 0.4);
  --primary-glow-strong: rgba(125, 239, 0, 0.7);
  --secondary: #0FDEB0;
  --accent: #033631;
  --gold: #bf9b42;
  --gold-light: #d4b978;
  --gold-dark: #8c6e30;
  --gold-glow: rgba(191, 155, 66, 0.4);
  --gold-glow-strong: rgba(191, 155, 66, 0.7);
  --bg-dark: #0B0B0B;
  --bg-dark-lighter: #111111;
  --bg-card: rgba(30, 30, 30, 0.3);
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(125, 239, 0, 0.2);
  --border-gold: rgba(191, 155, 66, 0.2);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
  --transition-fast: all 0.3s ease;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --backdrop-blur: blur(16px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.5;
}

body {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(125, 239, 0, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(191, 155, 66, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  background: none;
  color: var(--text);
}

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

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

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--gold-glow); }
  50% { box-shadow: 0 0 20px var(--primary-glow-strong), 0 0 15px var(--gold-glow-strong); }
  100% { box-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--gold-glow); }
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(125, 239, 0, 0.15);
  color: var(--primary);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--primary-glow);
}

.glass-card:hover .card-glow {
  opacity: 0.6;
}

.glass-section {
  position: relative;
}

.glass-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(125, 239, 0, 0.05) 0%, rgba(191, 155, 66, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.arrow {
  display: inline-block;
  transition: var(--transition-fast);
  margin-left: 4px;
}

a:hover .arrow {
  transform: translateX(4px);
}

/* ===== BUTTONS ===== */
.primary-button, .glow-button {
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-button:hover, .glow-button:hover {
  transform: translateY(-3px);
}

.glow-button {
  box-shadow: 0 0 15px var(--primary-glow), 0 0 10px var(--gold-glow);
}

.glow-button:hover {
  box-shadow: 0 0 25px var(--primary-glow-strong), 0 0 20px var(--gold-glow-strong);
  animation: glow 1.5s infinite;
}

.glow-button-small {
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
}

.glow-button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--primary-glow), 0 0 10px var(--gold-glow);
}

.secondary-button {
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.secondary-button:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

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

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

.logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 0 15px var(--primary-glow), 0 0 10px var(--gold-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  padding: 10px 20px;
  background: rgba(125, 239, 0, 0.15);
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cta-button:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-glow), 0 5px 10px var(--gold-glow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: var(--transition-fast);
}

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

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(125, 239, 0, 0.2) 0%, rgba(191, 155, 66, 0.1) 30%, transparent 60%);
  opacity: 0.6;
  filter: blur(40px);
  animation: pulse 8s infinite ease-in-out;
}

.glowing-orb {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(125, 239, 0, 0.3) 0%, rgba(191, 155, 66, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 6s infinite ease-in-out;
}

/* ===== PROPERTY SHOWCASE ===== */
.property-showcase {
  width: 450px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 3;
}

.showcase-card {
  width: 100%;
  border: 1px solid rgba(191, 155, 66, 0.2);
  overflow: visible;
}

.showcase-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.showcase-image.current {
  opacity: 1;
  transform: scale(1);
}

.showcase-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showcase-content {
  padding: 25px;
}

.showcase-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.showcase-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.location-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.showcase-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.showcase-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.showcase-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.showcase-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(125, 239, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 8px;
}

.showcase-button {
  width: 100%;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px 20px;
}

.showcase-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(125, 239, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.showcase-nav:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.showcase-dot.active {
  width: 24px;
  border-radius: 12px;
  background: var(--primary);
}

.showcase-dot:hover:not(.active) {
  background: var(--gold);
}

/* ===== SECTION STYLING ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Enhanced gradient text with gold accent */
.section-title .gradient-text {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* ===== LOCATIONS SECTION ===== */
.property-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-button {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.filter-button:hover, .filter-button.active {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  border-color: transparent;
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.location-card {
  padding: 30px;
  text-align: center;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.location-card:hover .location-icon {
  transform: translateY(-10px) scale(1.1);
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ===== PROPERTIES SECTION ===== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.property-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.property-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 6px 12px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.property-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

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

.property-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.property-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold);
}

.property-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 239, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.star-icon {
  color: var(--gold);
}

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

.service-card {
  padding: 40px 30px;
  position: relative;
  text-align: center;
}

.service-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: translateY(-10px);
  color: var(--gold);
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: var(--gold);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeIn 0.8s forwards;
  text-align: center;
}

.testimonial.active {
  display: block;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-title {
  font-size: 14px;
  color: var(--gold);
}

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

.testimonial-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(125, 239, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-button:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--primary-glow), 0 5px 10px var(--gold-glow);
}

.prev-arrow, .next-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.prev-arrow {
  transform: rotate(-135deg);
}

.next-arrow {
  transform: rotate(45deg);
}

/* ===== CTA SECTION ===== */
.cta {
  text-align: center;
}

.cta-content {
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-form {
  display: flex;
  max-width: 600px;
  margin: 40px auto 0;
  gap: 15px;
}

.cta-input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: var(--transition-fast);
}

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

.cta-submit {
  padding: 15px 25px;
  white-space: nowrap;
}

/* Form message styles */
.form-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
}

.form-message.success {
  background: rgba(125, 239, 0, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.form-message.error {
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
  border: 1px solid #ff5050;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 80px 0 30px;
  background: linear-gradient(to top, rgba(11, 11, 11, 1), rgba(11, 11, 11, 0.8));
  position: relative;
  overflow: hidden;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

.footer-newsletter {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-input {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  transition: var(--transition-fast);
}

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

.footer-submit {
  padding: 12px 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  font-size: 14px;
}

.copyright {
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.circle-1 {
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(rgba(125, 239, 0, 0.15), transparent 70%);
  animation: float 20s infinite alternate ease-in-out;
}

.circle-2 {
  bottom: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(rgba(191, 155, 66, 0.1), transparent 70%);
  animation: float 30s infinite alternate-reverse ease-in-out;
}

.circle-3 {
  top: 60%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(rgba(125, 239, 0, 0.1), transparent 70%);
  animation: float 25s infinite alternate ease-in-out;
}

.floating-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: 0 0 10px var(--primary-glow);
}

.dot-1 {
  top: 15%;
  left: 15%;
  animation: float 8s infinite alternate ease-in-out;
}

.dot-2 {
  top: 25%;
  right: 20%;
  animation: float 12s infinite alternate-reverse ease-in-out;
}

.dot-3 {
  bottom: 30%;
  left: 25%;
  animation: float 10s infinite alternate ease-in-out;
}

.dot-4 {
  bottom: 10%;
  right: 10%;
  animation: float 14s infinite alternate-reverse ease-in-out;
}

.dot-5 {
  top: 50%;
  left: 50%;
  animation: float 9s infinite alternate ease-in-out;
}

.floating-line {
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.line-1 {
  top: 30%;
  left: 10%;
  transform: rotate(45deg);
  animation: float 15s infinite alternate ease-in-out;
}

.line-2 {
  bottom: 40%;
  right: 20%;
  transform: rotate(-45deg);
  animation: float 18s infinite alternate-reverse ease-in-out;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  font-size: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 0 15px var(--primary-glow), 0 0 10px var(--gold-glow);
}

.scroll-top-button.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px var(--primary-glow-strong), 0 0 20px var(--gold-glow-strong);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader-inner {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.preloader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(125, 239, 0, 0.1);
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .property-showcase {
    right: 2%;
    width: 400px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 54px;
  }
  
  .property-showcase {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
  
  .showcase-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .locations-grid,
  .properties-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-buttons button {
    width: 100%;
  }
  
  nav ul {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  body.menu-open nav ul {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .locations-grid,
  .properties-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .showcase-features {
    grid-template-columns: 1fr;
  }
}