@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif !important;
}




:root {
  --primary-color: #2f3e6e;
  --secondary-color: #3f51b5;
  --accent-color: #5c6bc0;
  --light-color: #ffffff;
  --dark-text: #333333;
  --light-bg: #f5f7fb;
}


/* TOP BAR */
.top-bar {
  background: var(--primary-color);
  color: var(--light-color);
  font-size: 14px;
  /* padding: 8px 0; */
}

/* NAVBAR */
/* .main-navbar {
  background: #587DBF;
  color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  color: var(--dark-text);
  font-weight: 700;
  margin: 0 2px;
  transition: 0.3s;
}




/* DROPDOWN */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}



.main-navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #587DBF;
}

/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  text-align: right;
  /* border-bottom: 1px solid #E6BA20; */
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E6BA20;
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid #E6BA20;
}

.mobile-menu-items a {
  display: block;
  padding: 15px 0;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
  color: #EE861E;
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #EE861E;
}

.contact-info {
  display: flex;
  align-items: center;
  color: #E6BA20;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: #E6BA20;
}

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #EE861E;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-book-btn:hover {
  background-color: #EE861E;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #E6BA20; */
  text-align: center;
}

.mobile-logo-footer {
  margin-bottom: 5px;
}

.mobile-copyright {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mobile-copyright p {
  margin: 2px 0;
}

.thyo-link {
  color: #EE861E;
  font-weight: 600;
}



.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}




.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: #31488C !important;
  /* font-weight: 600; */
  background-color: #f2faff !important;
  /* border-radius: 10px;
  overflow: hidden;
  transition: color 0.2s; */
}

.navbar-nav .nav-link {
  color: #31488C !important;
  font-family: 'Roboto', 'Arial', sans-serif !important;
  font-size: 15px;
}



/* hero section css */



.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* IMAGE ANIMATION (ZOOM EFFECT) */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease;
}

.slide.active img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  color: white;
  max-width: 500px;
}

/* TEXT ANIMATION */
.content h4,
.content h1,
.content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slide.active .content h4 {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active .content h1 {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active .content p {
  transition-delay: 0.9s;
  opacity: 1;
  transform: translateY(0);
}

/* NAV BUTTON */
.nav-btn {
  position: absolute;
  bottom: 50px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid white;
}

.prev {
  left: 50px;
}

.next {
  left: 120px;
}


.content::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 110%;
  height: 120px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 35%;
  left: 10%;
  color: #fff;
}

/* SMALL TEXT */
.hero-subtitle {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: Roboto, Arial, sans-serif !important;
  margin-bottom: -10px;
}

/* BIG CURSIVE TEXT */
.hero-title {
  font-size: 80px;
  font-family: 'Parisienne', cursive;
  color: #d4af37;
  /* GOLD COLOR */
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 45px;
  }
}

.hero-subtitle,
.hero-title {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.hero-title {
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  opacity: 0.9;
}


/* ══════════════════════════════════════════════════
   GLOBAL SECTION STYLES
   ══════════════════════════════════════════════════ */

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Section Common */
.section-properties,
.section-luxury,
.section-testimonials,
.section-blog,
.section-developers,
.section-urgent-sale,
.section-rentals,
.section-brokerage {
  padding: 90px 0;
}

.section-new-construction {
  background: var(--light-color);
}

.section-resale {
  background: var(--light-bg);
}

.section-luxury {
  background: var(--light-color);
}

.section-testimonials {
  background: var(--primary-color);
}

.section-blog {
  background: var(--light-color);
}

.section-developers {
  background: var(--light-bg);
}

.section-urgent-sale {
  background: var(--light-color);
}

.section-rentals {
  background: var(--light-bg);
}

.section-brokerage {
  background: var(--light-color);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(63, 81, 181, 0.08);
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-badge.badge-urgent {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

.section-title {
  font-family: 'Roboto', 'Arial', sans-serif !important;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px !important;
}

.section-testimonials .section-title {
  color: var(--light-color);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  margin: 0 auto 18px;
  border-radius: 3px;
}

.section-testimonials .section-divider {
  background: linear-gradient(90deg, #d4af37, #f0d060);
}

.section-description {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════
   PROPERTY CARDS (New Construction + Resale)
   ══════════════════════════════════════════════════ */

.property-card {
  background: var(--light-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(47, 62, 110, 0.15);
}

.property-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.property-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 62, 110, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.property-card:hover .property-image-overlay {
  background: rgba(47, 62, 110, 0.3);
}

.property-quick-view {
  width: 46px;
  height: 46px;
  background: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.property-card:hover .property-quick-view {
  opacity: 1;
  transform: scale(1);
}

.property-quick-view:hover {
  background: var(--secondary-color);
  color: var(--light-color);
}

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-new {
  background: var(--secondary-color);
  color: var(--light-color);
}

.badge-hot {
  background: #ff5722;
  color: var(--light-color);
}

.badge-premium {
  background: linear-gradient(135deg, #d4af37, #c19b2e);
  color: var(--light-color);
}

.badge-resale {
  background: #00897b;
  color: var(--light-color);
}

.property-badge-oc {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 20px;
  background: #4caf50;
  color: var(--light-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.property-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-name {
     font-family: Roboto, Arial, sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px !important;
  line-height: 1.3;
}

.property-price-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f7;
}

.property-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
}

.property-price i {
  font-size: 13px;
}

.property-location {
  font-size: 13px;
  color: #888;
}

.property-location i {
  color: var(--accent-color);
  margin-right: 4px;
}

.property-details {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.detail-item {
  font-size: 12px;
  color: #666;
  background: var(--light-bg);
  padding: 5px 10px;
  border-radius: 6px;
}

.detail-item i {
  color: var(--accent-color);
  margin-right: 4px;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  /* gap: 8px; */
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  margin-top: auto;
  border-top: 1px solid #eef1f7;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  color: var(--primary-color);
  /* gap: 14px; */
}

.btn-view-details i {
  transition: transform 0.3s ease;
}

.btn-view-details:hover i {
  transform: translateX(4px);
}

/* Outline Button */
.btn-outline-primary-custom {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-primary-custom:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
}


/* ══════════════════════════════════════════════════
   LUXURY HOMES SECTION
   ══════════════════════════════════════════════════ */

.luxury-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  text-decoration: none;
}

.luxury-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover img {
  transform: scale(1.12);
}

.luxury-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.0));
  color: var(--light-color);
  transition: all 0.4s ease;
}

.luxury-card:hover .luxury-overlay {
  padding-bottom: 45px;
}

.luxury-overlay h3 {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px !important;
}

.luxury-overlay p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.luxury-explore {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4af37;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.luxury-card:hover .luxury-explore {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════ */

.section-testimonials .section-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 1050px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #d4af37;
  font-size: 18px;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 20px;
}

.author-name {
  color: var(--light-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px !important;
}

.author-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Testimonial Nav */
.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--light-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.testimonial-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-prev {
  left: -10px;
}

.testimonial-next {
  right: -10px;
}

.testimonial-dots {
  text-align: center;
  margin-top: 28px;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #d4af37;
  width: 28px;
  border-radius: 10px;
}


/* ══════════════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════════════ */

.blog-card {
  background: var(--light-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(47, 62, 110, 0.12);
}

.blog-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 16px;
  background: var(--secondary-color);
  color: var(--light-color);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 12px;
  color: #999;
}

.blog-meta i {
  margin-right: 4px;
  color: var(--accent-color);
}

.blog-title {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--primary-color);
  gap: 14px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}


/* ══════════════════════════════════════════════════
   DEVELOPERS SECTION
   ══════════════════════════════════════════════════ */

.developer-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.developer-logo-item {
  flex-shrink: 0;
}

.developer-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 110px;
  background: var(--light-color);
  border-radius: 14px;
  border: 1px solid #e8ecf3;
  transition: all 0.4s ease;
  cursor: pointer;
}

.developer-logo-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.1);
  transform: translateY(-4px);
}

.developer-name-text {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.developer-sub {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 2px;
}


/* ══════════════════════════════════════════════════
   URGENT PROPERTIES FOR SALE
   ══════════════════════════════════════════════════ */

.urgent-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef1f7;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.urgent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(47, 62, 110, 0.12);
  border-color: var(--secondary-color);
}

.urgent-card-featured {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: var(--light-color);
}

.urgent-card-featured:hover {
  box-shadow: 0 15px 40px rgba(47, 62, 110, 0.3);
}

.urgent-featured-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: #d4af37;
  color: var(--light-color);
  padding: 4px 40px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.urgent-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(63, 81, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

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

.urgent-card-featured .urgent-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--light-color);
}

.urgent-type {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.urgent-card-featured .urgent-type {
  color: var(--light-color);
}

.urgent-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.urgent-card-featured .urgent-price {
  color: #d4af37;
}

.urgent-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.urgent-features li {
  padding: 6px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f2f6;
}

.urgent-card-featured .urgent-features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.urgent-features li i {
  color: #4caf50;
  margin-right: 8px;
}

.urgent-card-featured .urgent-features li i {
  color: #d4af37;
}

.btn-urgent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-urgent:hover {
  background: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(63, 81, 181, 0.3);
}

.urgent-card-featured .btn-urgent {
  background: var(--light-color);
  color: var(--primary-color);
}

.urgent-card-featured .btn-urgent:hover {
  background: #d4af37;
  color: var(--light-color);
}


/* ══════════════════════════════════════════════════
   RENTAL PROPERTIES
   ══════════════════════════════════════════════════ */

.rental-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef1f7;
  transition: all 0.4s ease;
  height: 100%;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(47, 62, 110, 0.12);
  border-color: var(--accent-color);
}

.rental-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rental-type {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

.rental-status {
  padding: 4px 14px;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.rental-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.rental-price span {
  font-size: 14px;
  font-weight: 400;
  color: #999;
}

.rental-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef1f7;
}

.rental-location i {
  color: var(--accent-color);
  margin-right: 6px;
}

.rental-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.rental-amenities span {
  font-size: 12px;
  color: #666;
  background: var(--light-bg);
  padding: 6px 12px;
  border-radius: 8px;
}

.rental-amenities span i {
  color: var(--accent-color);
  margin-right: 5px;
}

.btn-rental {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-rental:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.25);
}


/* ══════════════════════════════════════════════════
   BROKERAGE SECTION
   ══════════════════════════════════════════════════ */

.brokerage-card {
  background: var(--light-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef1f7;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.brokerage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(47, 62, 110, 0.1);
}

.brokerage-card-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: var(--light-color);
}

.brokerage-card-highlight:hover {
  box-shadow: 0 15px 40px rgba(47, 62, 110, 0.3);
}

.brokerage-highlight-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brokerage-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(63, 81, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.brokerage-card:hover .brokerage-icon {
  transform: scale(1.1) rotate(5deg);
}

.brokerage-card-highlight .brokerage-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--light-color);
}

.brokerage-title {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px !important;
}

.brokerage-card-highlight .brokerage-title {
  color: var(--light-color);
}

.brokerage-rate {
  font-size: 40px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 4px;
  line-height: 1;
}

.brokerage-card-highlight .brokerage-rate {
  color: #d4af37;
}

.brokerage-sub-rate {
  font-size: 13px;
  color: #999;
  margin-bottom: 14px;
  font-weight: 500;
}

.brokerage-card-highlight .brokerage-sub-rate {
  color: rgba(255, 255, 255, 0.6);
}

.brokerage-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.brokerage-card-highlight .brokerage-desc {
  color: rgba(255, 255, 255, 0.7);
}


/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */

.section-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 62, 110, 0.92), rgba(63, 81, 181, 0.88));
}

.cta-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-title {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 42px;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 18px !important;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, #d4af37, #c19b2e);
  color: var(--light-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: var(--light-color);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--light-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
  border-color: var(--light-color);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: var(--light-color);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cta-stat-item {
  text-align: center;
}

.counter-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #d4af37;
  font-family: Roboto, Arial, sans-serif !important;
}

.cta-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

.site-footer {
  background: #1a2340;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(1.5);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 22px !important;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '›';
  margin-right: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 6px;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

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

.footer-contact li {
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li i {
  color: var(--accent-color);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #d4af37;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .section-title {
    font-size: 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .luxury-card {
    height: 260px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }

  .cta-stats {
    gap: 30px;
  }
}

@media (max-width: 767.98px) {

  .section-properties,
  .section-luxury,
  .section-testimonials,
  .section-blog,
  .section-developers,
  .section-urgent-sale,
  .section-rentals,
  .section-brokerage {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 14px;
  }

  .property-image-wrap {
    height: 200px;
  }

  .luxury-card {
    height: 220px;
  }

  .luxury-overlay h3 {
    font-size: 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 15px;
  }

  .counter-number {
    font-size: 30px;
  }

  .urgent-price {
    font-size: 26px;
  }

  .brokerage-rate {
    font-size: 32px;
  }

  .testimonial-nav-btn {
    display: none;
  }

  .section-cta {
    padding: 70px 0;
  }

  .cta-bg-image {
    background-attachment: scroll;
  }

  .hero-slider {
    height: 60vh;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-stats {
    gap: 20px;
  }

  .rental-amenities {
    gap: 6px;
  }

  .property-details {
    gap: 6px;
  }
}

/* Swiper Styles Override */
.swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #d4af37;
  opacity: 1;
  width: 24px;
  border-radius: 12px;
  transition: width 0.3s ease;
}

/* Swiper Navigation Custom Buttons */
.swiper-container-wrapper {
  position: relative;
  padding: 0 55px;
  /* space for the buttons */
}

.custom-swiper-next,
.custom-swiper-prev {
  background: #e91e63;
  /* Pink color matching user image */
  color: #ffffff !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0 !important;
  z-index: 10;
  transition: all 0.3s ease;
}

.custom-swiper-next {
  right: 0;
}

.custom-swiper-prev {
  left: 0;
}

.custom-swiper-next::after,
.custom-swiper-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.custom-swiper-next:hover,
.custom-swiper-prev:hover {
  background: var(--primary-color);
  box-shadow: 0 5px 20px rgba(47, 62, 110, 0.5);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 991.98px) {
  .swiper-container-wrapper {
    padding: 0;
  }

  .custom-swiper-next,
  .custom-swiper-prev {
    display: none !important;
  }
}