/* ===== GLOBAL THEME ===== */
:root {
  --primary: #3498db;       /* Main brand color */
  --secondary: #2c3e50;     /* Dark accent color */
  --accent: #2980b9;        /* Vibrant accent */
  --dark: #34495e;          /* Dark text/background */
  --light: #ecf0f1;         /* Light background */
  --gray: #bdc3c7;          /* Neutral gray */
  --success: #27ae60;       /* Success color */
  
  --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Custom Cursor Styles */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 
    transform 0.1s ease,
    width 0.3s ease, 
    height 0.3s ease;
  mix-blend-mode: difference;
  display: none;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: 
    transform 0.3s ease,
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
  display: none;
}

.cursor.active {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--accent);
}

.cursor-follower.active {
  width: 50px;
  height: 50px;
  border-color: var(--accent);
  border-width: 1px;
}

.cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-follower.click {
  transform: translate(-50%, -50%) scale(0.9);
  border-color: white;
}

/* Hide cursor on touch devices */
@media (pointer: coarse) {
  .cursor, .cursor-follower {
    display: none !important;
  }
}

/* Ensure no default cursor interferes */
body, body * {
  cursor: none !important;
}
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.9);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background-color: rgba(248,248,248,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 1rem 2rem;
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
  color: var(--secondary);
}

nav.scrolled .nav-links a:hover {
  color: var(--primary);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Playfair Display', serif;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button Styles */
.btn {
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn-primary:hover {
  background-color: #D4B483;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Section Styles */
.section {
  padding: 8rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--primary);
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color:var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-container {
      grid-template-columns: 1fr;
  }
}
/* Luxury Properties Showcase */
.properties-showcase {
  background-color: var(--secondary);
  color: white;
}

.properties-showcase .section-title {
  color: white;
}

.property-slider {
  max-width: 1400px;
  margin: 0 auto;
}

.property-card {
  margin: 0 1rem;
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-10px);
}

.property-image {
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-details {
  padding: 1.5rem;
  background-color: white;
  color: var(--secondary);
}

.property-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.property-location {
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.property-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.feature {
  text-align: center;
}

.feature i {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
}

  /* Section Styling */
  .benefits-section {
    background: #F9F7F5;
    padding: 5rem 2rem;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* Benefits Grid - 3 columns */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary) /* Primary color */
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary); /* Primary color */
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
    font-weight: 600;
}

.benefit-description {
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* Testimonials */
.testimonials {
  background-color: var(--light);
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 2px;
  padding: 2.5rem;
  margin: 0 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  color: #555;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: -15px;
  font-family: 'Playfair Display', serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--secondary);
}

.author-info p {
  font-size: 0.9rem;
  color: #777;
}
/* CTA Section */
.cta-section {
  background: url('images/bilo.jpeg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
  padding: 100px 20px; /* Add padding to make content visible over the background */
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  color: white;
  z-index: 1;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-buttons .btn-primary {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 5rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: white;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  color: white;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}
.phone-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: your-hover-color;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s !important;
}

.delay-2 {
  transition-delay: 0.4s !important;
}

.delay-3 {
  transition-delay: 0.6s !important;
}

.delay-4 {
  transition-delay: 0.8s !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
      font-size: 3.5rem;
  }
  
  .section {
      padding: 6rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.8rem;
  }
}