/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  cursor: none;
}

/* Color Variables */
:root {
  /* Zaffre (Blue) Shades */
  --zaffre-50: #e6e9f3;
  --zaffre-100: #c2c8de;
  --zaffre-200: #9ca5c7;
  --zaffre-300: #6c7bb0;
  --zaffre-400: #3d4e8a;
  --zaffre-500: #20306a;
  --zaffre-600: #16225a;
  --zaffre-700: #101a45;
  --zaffre-800: #0b1332;
  --zaffre-900: #081A51;

  /* Gold Shades */
  --gold-50: #f9f6e7;
  --gold-100: #f3eac2;
  --gold-200: #ecde9c;
  --gold-300: #e5d16c;
  --gold-400: #dec43d;
  --gold-500: #D4AF37;
  --gold-600: #b99a2f;
  --gold-700: #9e8427;
  --gold-800: #836e1f;
  --gold-900: #6a5917;

  /* Light Gold Shades */
  --light-gold-50: #fcfbe7;
  --light-gold-100: #f9f7c2;
  --light-gold-200: #f6f39c;
  --light-gold-300: #f3ef6c;
  --light-gold-400: #f0eb3d;
  --light-gold-500: #F0E68C;
  --light-gold-600: #d1c76e;
  --light-gold-700: #b2a852;
  --light-gold-800: #938a36;
  --light-gold-900: #756c1b;

  /* Gray (unchanged) */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold-400);
}
.text-blue {
  color: var(--zaffre-600);
}

.bg-white {
  background-color: #ffffff;
}
.bg-gray {
  background-color: var(--gray-50);
}
.bg-blue {
  background-color: var(--zaffre-600);
}
.bg-gold {
  background-color: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--zaffre-600);
  color: white;
}

.btn-primary:hover {
  background-color: var(--zaffre-700);
}

.btn-gold {
  background-color: var(--gold-500);
  color: var(--zaffre-900);
}

.btn-gold:hover {
  background-color: var(--gold-600);
}

.btn-blue {
  background-color: var(--zaffre-900);
  color: white;
}

.btn-blue:hover {
  background-color: var(--zaffre-800);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--zaffre-900);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-blue {
  background-color: var(--zaffre-100);
  color: var(--zaffre-800);
}

.badge-gold {
  background-color: var(--gold-100);
  color: var(--gold-800);
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--zaffre-600);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

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

.logo-main {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--zaffre-900);
}

.logo-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-600);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--zaffre-600);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  background-color: white;
  border-top: 1px solid var(--gray-200);
}

.mobile-nav-content {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--zaffre-600);
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--zaffre-900) 0%, var(--zaffre-800) 50%, var(--zaffre-700) 100%);
  color: white;
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--zaffre-100);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--zaffre-900) 0%, var(--zaffre-700) 100%);
  color: white;
  padding: 5rem 0;
}

.page-hero-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: var(--zaffre-100);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-content {
  max-width: 96rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  color: var(--zaffre-900);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border: 2px solid var(--gray-100);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--gold-400);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--zaffre-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--zaffre-600);
}

.stat-title {
  font-size: 1.25rem;
  color: var(--zaffre-900);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--gray-600);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.value-icon.bg-blue {
  background-color: var(--zaffre-600);
  color: white;
}

.value-icon.bg-gold {
  background-color: var(--gold-500);
  color: var(--zaffre-900);
}

.value-title {
  font-size: 1.5rem;
  color: var(--zaffre-900);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border: 2px solid var(--gray-100);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold-400);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.service-icon.bg-blue {
  background-color: var(--zaffre-100);
  color: var(--zaffre-600);
}

.service-icon.bg-gold {
  background-color: var(--gold-100);
  color: var(--gold-600);
}

.service-title {
  font-size: 1.25rem;
  color: var(--zaffre-900);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--gold-400);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Real Estate CTA */
.real-estate-cta {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--zaffre-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-400);
}

.cta-title {
  font-size: 2.5rem;
  color: var(--zaffre-900);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--zaffre-800);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--zaffre-700);
  margin-top: 1rem;
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-choose-item {
  text-align: center;
}

.why-choose-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--zaffre-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--zaffre-600);
}

.why-choose-title {
  font-size: 1.25rem;
  color: var(--zaffre-900);
  margin-bottom: 0.75rem;
}

.why-choose-description {
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  background-color: var(--zaffre-900);
  color: white;
  padding: 5rem 0;
}

.cta-section .cta-content {
  text-align: center;
}

.cta-section .cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-section .cta-subtitle {
  font-size: 1.25rem;
  color: var(--zaffre-100);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: var(--zaffre-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background-color: var(--gold-500);
  color: var(--zaffre-900);
}

.footer-description {
  color: var(--zaffre-100);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.social-link {
  color: var(--zaffre-300);
  transition: color 0.3s ease;
}

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

.footer-title {
  font-size: 1.125rem;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--zaffre-100);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--gold-400);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item span,
.contact-item p {
  color: var(--zaffre-100);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--zaffre-800);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--zaffre-200);
  margin: 0;
}

/* Custom Cursor Styles */
#cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
  border-radius: 50%;
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  transition: transform 0.2s ease-out;
}

#cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid #D4AF37;
  border-radius: 50%;
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  transition: all 0.3s ease-out;
}

body:hover #cursor-outline {
  opacity: 0.5;
}

a:hover ~ #cursor-outline,
button:hover ~ #cursor-outline {
  transform: scale(1.5);
  opacity: 1;
}

#cursor-dot.clicked,
#cursor-outline.clicked {
  transform: scale(2.5);
  transition: transform 0.1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title,
  .page-hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.active {
    display: block;
  }

  .hero-title,
  .page-hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle,
  .page-hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title,
  .page-hero-title {
    font-size: 2rem;
  }

  .hero,
  .page-hero {
    padding: 4rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .cta-section {
    display: none;
  }

  .hero,
  .page-hero {
    background: none;
    color: black;
  }

  .section {
    padding: 1rem 0;
  }
}
