:root {
    --gold: #E7C873;
    --gold-light: #F0DBA7;
    --gold-dark: #D9B04C;
    --dark-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-light: #1e1e1e;
    --text-primary: #E7C873;
    --dark: #1a2530;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
}
/* Body Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}
/* Gold text utility class */
.text-gold {
    color: var(--gold);
}

/* Buttons */
.btn-gold {
    background-color: #E7C873;
    color: white;
    border: none;
}

.btn-gold:hover {
    background-color: #E7C873;
}


/* Navbar Styles */
.navbar {
  background-color: var(--bg-navbar);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 12px 5%;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--bg-navbar-scrolled);
  padding: 8px 5%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-smooth);
}

.navbar-brand:hover {
  color: var(--gold-primary);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 10px;
  position: relative;
  transition: var(--transition-pop);
  background-color: transparent;
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary);
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  font-weight: 700;
  color: var(--gold-primary);
  box-shadow: inset 0 0 0 1px rgba(197, 163, 56, 0.25);
  background-color: var(--gold-active);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: #d9b84a;
}

.search-bar {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 30px;
}

.form-select,
.form-control {
  border: none;
  border-radius: 8px;
  box-shadow: none;
  height: 50px;
}

.btn-search {
  background-color: #d9b84a;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  height: 50px;
}

.popular-search button {
  background: #f3f3f3;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  margin-right: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.popular-search button:hover {
  background: #e0e0e0;
}

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

.image-grid img {
  width: 100%;
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.agent-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.agent-box img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.agent-box img:first-child {
  margin-left: 0;
}

.city-box {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.city-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.city-box img {
  height: 150px;
  width: 250px;
  object-fit: cover;
}

.btn-group .btn {
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.9rem;
}

.btn-group .btn.active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.badge {
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 500;
}

.badge.bg-success {
  background-color: #28a745 !important;
}

.badge.bg-primary {
  background-color: #007bff !important;
}

.badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000;
}

.how-step {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.how-step .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #eac86a;
  border-radius: 50%;
  margin-bottom: 20px;
}

.bg-dark-green {
  background-color: #184c43;
}

.btn-warning {
  background-color: #e0bb55;
  border: none;
  color: #000;
}

.btn-warning:hover {
  background-color: #d1a845;
  color: #000;
}

.testimonial-section {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 60px 0;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quote-icon {
  background-color: #f4c95d;
  color: #000;
}

.progress {
  background-color: #e0e0e0;
  border-radius: 10px;
  height: 4px;
}

.progress-bar {
  border-radius: 10px;
  background-color: #444;
}

.articles-news .card {
  transition: all 0.3s ease;
}

.articles-news .card:hover {
  transform: translateY(-5px);
}
/* Footer */
footer {
  background: linear-gradient(to right, #1a2530, #2c3e50);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
  position: relative;
}

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

.footer-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
}

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

.footer-logo img {
  width: 50px;
  margin-right: 15px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.footer p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

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

.contact-info-item {
  display: flex;
  margin-bottom: 18px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(231, 200, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1100px) {

  .contact-form,
  .contact-info {
    padding: 50px;
  }
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    border-bottom: 1px solid var(--light-gray);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 100px 0 60px;
  }

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

  .section-subtitle {
    font-size: 1.2rem;
  }

  .contact-form,
  .contact-info {
    padding: 40px;
  }

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

@media (max-width: 576px) {

  .contact-form,
  .contact-info {
    padding: 30px;
  }

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

  .section-title::after {
    width: 60px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    margin-right: 15px;
  }

  .contact-details h3 {
    font-size: 1.2rem;
  }
}
/* ========== Scroll Animations ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Custom Utility Classes ========== */
.bg-custom-light {
    background-color: var(--light, #f8f9fa) !important;
}

.bg-deep-blue {
    background-color: var(--secondary, #1e1e2f);
}

.ptb-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* ========== Navbar ========== */
.navbar-nav {
    align-items: center;
}

/* ========== Responsive Fixes ========== */
@media (max-width: 768px) {
    .display-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .stats-number {
        font-size: 2.8rem;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .stats-item {
        padding: 20px 15px;
    }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.show > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 2px;
  }

  .navbar-nav .nav-link {
    color: #1a1a1a !important;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 4px 0;
  }

  .navbar .dropdown-menu {
    border-radius: 0;
    box-shadow: none;
    padding-left: 1rem;
  }
}
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

