:root {
  /* --primary-gold: #e1b137; */
    --primary-gold: #e8b16d;
  --dark-gold: #e8b16d;
  --dark-bg: #262626;
  --light-bg: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar-toggler{
  background-color: white !important;
}
body {
  font-family: 'Poppins', sans-serif;
   /* font-family: 'Playfair Display', serif; */
  color: #333;
  /* overflow-x: hidden; */
}
html, body {
  width: 100%;
  overflow-x: hidden;
}



h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  background: rgba(38, 38, 38, 0.95);
  backdrop-filter: blur(10px);
  /* padding: 1.5rem 0; */
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}



.brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  font-family: 'Playfair Display', serif;
}

.text-warning{
  color: #e8b16d !important;
}
.btn-warning{
  background-color: #e8b16d !important;
}
.btn-outline-warning{
  --bs-btn-border-color: #e8b16d !important;
  --bs-btn-color: #e8b16d !important;
}



.btn-outline-warning:hover{
  --bs-btn-border-color: #e8b16d !important;
  --bs-btn-hover-bg: #e8b16d !important;
  border-color: #e8b16d !important;
}




.nav-link {
  color: white !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold) !important;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-gradient {
  background: linear-gradient(to right, var(--primary-gold), var(--dark-gold));
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 177, 55, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 177, 55, 0.4);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(38, 38, 38, 0.7), rgba(38, 38, 38, 0.5), rgba(38, 38, 38, 0.8)),
              url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=2000&h=1200&fit=crop') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(38, 38, 38, 0.7), rgba(38, 38, 38, 0.5), rgba(38, 38, 38, 0.8));
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(225, 177, 55, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-left {
  top: 10%;
  left: 5%;
}

.hero-glow-right {
  bottom: 10%;
  right: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 177, 55, 0.2);
  border: 1px solid rgba(225, 177, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: white;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.search-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.search-field {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.search-field i {
  font-size: 1.25rem;
}

.search-field label {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
  display: block;
}

.form-select-custom {
  border: none;
  background: transparent;
  font-weight: 500;
  padding: 0;
  width: 100%;
}

.form-select-custom:focus {
  outline: none;
  box-shadow: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: var(--primary-gold);
  border-radius: 3px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 25px;
    opacity: 0.5;
  }
}

/* Section Styles */
.section-label {
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Property Cards */
.property-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.badge-featured {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.btn-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-favorite:hover {
  background: var(--primary-gold);
  color: white;
}

.property-price {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
}

.property-body {
  padding: 1.5rem;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.property-location {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.property-features {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.property-features span {
  font-size: 0.875rem;
  color: #666;
}

/* About Section */
.about-images {
  position: relative;
}

@media (min-width: 768px) {
 

.years-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(225, 177, 55, 0.4);
}
}

.years-badge h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
}

.years-badge p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  font-size: 1.25rem;
}

.stats-box {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 1rem;
}

/* Services Section */
.services-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
 

.services-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(225, 177, 55, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}
}
.services-glow-left {
  top: 0;
  left: 0;
}

.services-glow-right {
  bottom: 0;
  right: 0;
}

.service-card {
  background: linear-gradient(to bottom right, rgba(38, 38, 38, 1), rgba(20, 20, 20, 0.05));
  border: 1px solid rgba(225, 177, 55, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 177, 55, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.service-line {
  width: 48px;
  height: 4px;
  background: var(--primary-gold);
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.quote-icon {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(225, 177, 55, 0.4);
}

.quote-icon i {
  font-size: 1.5rem;
  color: white;
}

.stars {
  padding-top: 1rem;
}

.testimonial-text {
  color: #666;
  line-height: 1.8;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  object-fit: cover;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
}

.contact-form {
  background: #f5f5f5;
  padding: 2.5rem;
  border-radius: 1rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(225, 177, 55, 0.25);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(225, 177, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gold);
  color: white;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(225, 177, 55, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(225, 177, 55, 0.5);
}

.scroll-to-top.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .years-badge {
    position: static;
    margin-top: 2rem;
  }
}
