body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #333;
  padding-top: 140px; /* header + banner */
}

.navbar {
  background: #001f3f;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .logo a {
  font-size: 1.5rem;
  color: gold;
  text-decoration: none;
}

.navbar nav {
  margin-top: 1rem;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.navbar nav a:hover {
  color: gold;
  background: rgba(255, 215, 0, 0.1);
}

.banner {
  background: #ffd700;
  color: #001f3f;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  width: 100%;
  box-sizing: border-box;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop navigation styles */
.centered-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.centered-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.centered-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  position: relative;
}

.centered-nav a:hover {
  color: gold;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-1px);
}

/* Dropdown menu styles */
.centered-nav .dropdown {
  position: relative;
}
.centered-nav .dropdown > a:after {
  content: ' ▼';
  font-size: 0.7em;
  color: #fff;
  margin-left: 4px;
}
.centered-nav .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 0 0 10px 10px;
  z-index: 2000;
  padding: 0.5rem 0;
  border: 1px solid #e0e0e0;
}
.centered-nav .dropdown:hover > .dropdown-menu,
.centered-nav .dropdown:focus-within > .dropdown-menu {
  display: block;
}
.centered-nav .dropdown-menu li {
  display: block;
}
.centered-nav .dropdown-menu a {
  color: #001f3f;
  padding: 0.7rem 1.2rem;
  display: block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.centered-nav .dropdown-menu a:hover {
  background: #ffd700;
  color: #001f3f;
}


/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 1001;
}

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

.mobile-menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile responsive styles */
@media (max-width: 900px) {
  body {
    padding-top: 130px;
  }
  
  .header-flex {
    padding: 0.8rem 1rem;
    gap: 1rem;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1002 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
  }
  
  .centered-nav {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #001f3f !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15) !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    display: block !important;
    flex: none !important;
    justify-content: flex-start !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    will-change: transform, left !important;
    backface-visibility: hidden !important;
  }
  
  .centered-nav.active {
    left: 0 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: #001f3f !important;
  }
  
  .centered-nav ul {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 80px !important;
    display: flex !important;
    align-items: stretch !important;
    background: #001f3f !important;
  }
  
  .centered-nav li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: block !important;
    margin: 0 !important;
    background: #001f3f !important;
  }
  
  .centered-nav li:last-child {
    border-bottom: none;
  }
  
  .centered-nav a {
    display: block !important;
    padding: 1rem 2rem !important;
    border-radius: 0 !important;
    text-align: left !important;
    font-size: 1.1rem !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: #001f3f !important;
    transform: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    margin: 0 !important;
    border: none !important;
  }
  
  .centered-nav a:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    color: gold !important;
    padding-left: 2.5rem !important;
    transform: none !important;
    border: none !important;
  }
  
  .banner {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .header-left {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  
  .logo-img {
    display: flex !important;
    align-items: center !important;
  }
  
  .logo-img img {
    height: 40px;
  }
  
  /* Mobile dropdown menu styles - properly integrated */
  .centered-nav .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    min-width: 100% !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;
  }
  
  /* Show dropdown when open class is added */
  .centered-nav .dropdown.open > .dropdown-menu {
    display: block !important;
    padding: 0 !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  
  .centered-nav .dropdown > a:after {
    color: #fff !important;
    transition: transform 0.3s ease !important;
    content: ' ▼' !important;
    font-size: 0.7em !important;
    margin-left: 4px !important;
  }
  
  .centered-nav .dropdown.open > a:after {
    transform: rotate(180deg) !important;
    color: gold !important;
  }
  
  .centered-nav .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.8rem 3rem !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important;
    border-left: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  .centered-nav .dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    color: gold !important;
    padding-left: 3.5rem !important;
    border-left-color: gold !important;
  }
  
  /* Ensure smooth transitions for dropdown items */
  .centered-nav .dropdown-menu a::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 0 !important;
    height: 100% !important;
    background: rgba(255, 215, 0, 0.1) !important;
    transition: width 0.3s ease !important;
    z-index: -1 !important;
  }
  
  .centered-nav .dropdown-menu a:hover::before {
    width: 100% !important;
  }
  
  /* Ensure dropdown items are properly contained */
  .centered-nav .dropdown-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* Add will-change for better performance */
  .centered-nav .dropdown-menu {
    will-change: opacity, transform !important;
    backface-visibility: hidden !important;
    transform-style: preserve-3d !important;
  }
  
  /* Ensure dropdown toggle arrow rotates smoothly */
  .centered-nav .dropdown > a:after {
    will-change: transform !important;
    backface-visibility: hidden !important;
  }
  
  /* Add focus states for better accessibility */
  .centered-nav .dropdown > a:focus,
  .centered-nav .dropdown-menu a:focus {
    outline: 2px solid gold !important;
    outline-offset: 2px !important;
  }
  
  /* Prevent text selection during dropdown interactions */
  .centered-nav .dropdown > a,
  .centered-nav .dropdown-menu a {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
  }
  
  /* Ensure mobile menu links are always clickable */
  .centered-nav.active a {
    pointer-events: auto !important;
    cursor: pointer !important;
  }
  
  /* Additional mobile menu fixes */
  .centered-nav.active {
    background: #001f3f !important;
  }
  
  .centered-nav.active * {
    background: #001f3f !important;
  }
  
  /* Ensure no white spaces in mobile menu */
  .centered-nav.active ul,
  .centered-nav.active li,
  .centered-nav.active a {
    background: #001f3f !important;
  }
  
  /* Focus states for accessibility */
  .mobile-menu-toggle:focus {
    outline: 2px solid gold !important;
    outline-offset: 2px !important;
  }
  
  .centered-nav a:focus {
    outline: 2px solid gold !important;
    outline-offset: -2px !important;
    background: rgba(255, 215, 0, 0.2) !important;
  }
  
  /* Prevent text selection in mobile menu */
  .centered-nav {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }
  
  /* Custom scrollbar for mobile menu */
  .centered-nav::-webkit-scrollbar {
    width: 6px;
  }
  
  .centered-nav::-webkit-scrollbar-track {
    background: #001f3f;
  }
  
  .centered-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 3px;
  }
  
  .centered-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
  }
}



@media (max-width: 600px) {
  .header-flex {
    padding: 0.6rem 0.8rem;
  }
  
  .banner {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  
  .centered-nav {
    width: 260px !important;
  }
  
  .centered-nav a {
    padding: 1.2rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .centered-nav a:hover {
    padding-left: 2rem !important;
  }
  
  .centered-nav .dropdown-menu a {
    padding: 0.8rem 2.5rem !important;
  }
  
  .centered-nav .dropdown-menu a:hover {
    padding-left: 3rem !important;
  }
}

.hero {
  background: #001f3f;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.25rem;
}
.btn-primary {
  background: gold;
  color: #001f3f;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary {
  background: #001f3f;
  color: gold;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.about-highlight, .services, .testimonials, .contact-cta, footer, .property-search {
  padding: 3rem 1rem;
  text-align: center;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.service-card, .property-card {
  border: 1px solid #ccc;
  padding: 1.5rem;
  width: 300px;
  background-color: #f9f9f9;
}
footer {
  background: #001f3f;
  color: white;
  margin-top: 3rem;
  padding: 2rem 0 1rem 0;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}
.footer-links a {
  color: gold;
  text-decoration: none;
}
.property-search form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1rem;
}
.property-search input, .property-search select {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
}
.advanced-filters label {
  margin-right: 1rem;
}
.property-listings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.property-card {
  border: 1px solid #ccc;
  padding: 1.5rem;
  width: 300px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
  border-radius: 6px 6px 0 0;
}
.property-card h3 {
  margin: 0.5rem 0;
}
.property-card p {
  margin-bottom: 1rem;
}
.property-card .btn-primary {
  margin-top: auto;
}

.user-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.user-features .btn-secondary {
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#form-message {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-img img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: gold;
  letter-spacing: 1px;
  margin-right: 1.5rem;
}
.logo-text a {
  color: gold;
  text-decoration: none;
}

/* Modern card-based layout */
.property-listings, .service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.property-card, .service-card {
  border: 1px solid #e0e0e0;
  padding: 2rem 1.5rem;
  width: 320px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.property-card:hover, .service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1rem;
}

/* Modern search bar and form styles */
.property-search form, .contact-form {
  background: #f7f9fa;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: inline-block;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  max-width: 700px;
}
.property-search select, .property-search input, .contact-form input, .contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 220px;
  background: #fff;
  margin-bottom: 0;
}
.property-search input[type="text"] {
  width: 180px;
}
.property-search button, .contact-form button, .btn-primary, .btn-secondary {
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: gold;
  color: #001f3f;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.property-search button:hover, .contact-form button:hover, .btn-primary:hover, .btn-secondary:hover {
  background: #ffd700;
  color: #001f3f;
}
.advanced-filters label {
  margin-right: 1.5rem;
  font-size: 1rem;
}

/* Section headings */
h2, h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .property-listings, .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .header-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001f3f;
  border-radius: 0 0 16px 16px;
  margin-bottom: 2rem;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 500px;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-img-wrap {
  flex: 1 1 300px;
  max-width: 400px;
}
.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.about-content {
  flex: 2 1 400px;
}

.contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-img-wrap {
  flex: 1 1 300px;
  max-width: 400px;
}
.contact-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-content {
  flex: 2 1 400px;
}
.map-wrap {
  width: 100%;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .about-flex, .contact-flex {
    flex-direction: column;
    align-items: center;
  }
  .about-img-wrap, .contact-img-wrap {
    max-width: 100%;
  }
  .hero-text {
    height: 60vh;
    min-height: 300px;
  }
  .fullscreen-hero, .hero-img {
    height: 60vh;
    min-height: 300px;
  }
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #001f3f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.fullscreen-hero {
  width: 100vw;
  height: 100vh;
  min-height: 500px;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.top-banner {
  width: 100vw;
  background: gold;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 1100;
  padding: 0.5rem 0;
}
.top-banner .banner {
  color: #001f3f;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.navbar .banner {
  color: #001f3f;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 0 16px;
  flex: 1;
}
.top-banner { display: none; }

/* Services Section Styles */
.intro {
  max-width: 900px;
  margin: 50px auto 30px;
  text-align: center;
  padding: 0 20px;
}
.intro h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #2c3e50;
}
.intro p {
  font-size: 1.1rem;
  color: #555;
}
.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.service-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.service-block.reverse {
  flex-direction: row-reverse;
}
.text {
  flex: 1;
  padding: 20px;
}
.text h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.text p {
  color: #444;
  margin-bottom: 15px;
}
.text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}
.image {
  flex: 1;
}
.image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.image img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }
}
.map-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f7f9fa;
  padding: 0;
  border-top: 1px solid #e0e0e0;
}
.map-section iframe {
  width: 100vw;
  height: 500px;
  display: block;
  border: 0;
}
@media (max-width: 900px) {
  body {
    padding-top: 110px;
  }
  .map-section iframe {
    height: 250px;
  }
}







.about-hero {
  background: #fff;
  padding: 48px 0 24px 0;
  text-align: left;
}
.about-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-breadcrumb {
  color: #888;
  font-size: 1rem;
  margin-bottom: 12px;
}
.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 10px;
}
.about-hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
}
.about-cards-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px auto 60px auto;
  max-width: 1100px;
  padding: 0 24px;
}
.about-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.about-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 10px;
}
.about-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
.about-story-section {
  background: #181818;
  color: #fff;
  padding: 60px 0;
}
.about-story-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
}
.about-story-text {
  flex: 2;
}
.about-story-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.about-story-text p {
  font-size: 1.08rem;
  color: #eee;
  line-height: 1.7;
}
.about-story-img {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
}
.about-story-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.about-services-overview {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}
.about-services-overview h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 36px;
}
.about-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-service-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  min-width: 340px;
  max-width: 520px;
  flex: 1 1 420px;
  padding: 24px 18px;
  gap: 24px;
  text-align: left;
}
.about-service-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.about-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 8px;
}
.about-service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .about-cards-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .about-story-content {
    flex-direction: column;
    gap: 24px;
  }
  .about-services-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .about-service-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    gap: 12px;
  }
  .about-service-card img {
    width: 100%;
    height: 120px;
    max-width: 100%;
  }
}

.services-hero {
  background: #fff;
  padding: 48px 0 24px 0;
  text-align: left;
}
.services-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.services-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 10px;
}
.services-hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
}
.services-grid-section {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  min-width: 340px;
  max-width: 520px;
  flex: 1 1 420px;
  padding: 24px 18px;
  gap: 24px;
  text-align: left;
}
.service-card-icon {
  width: 64px;
  height: 64px;
  margin-right: 0;
  margin-bottom: 0;
}
.service-card img:not(.service-card-icon) {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.service-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .services-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    gap: 12px;
  }
  .service-card img:not(.service-card-icon), .service-card-icon {
    width: 100%;
    height: 120px;
    max-width: 100%;
    margin-bottom: 12px;
  }
}

.how-it-works-section {
  background: #fff;
  padding: 60px 24px 80px 24px;
  text-align: center;
}
.how-it-works-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 12px;
}
.how-it-works-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 48px;
}
.how-it-works-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  flex: 1 1 0;
  min-width: 240px;
  max-width: 320px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}
.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .how-it-works-steps {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.contact-cta {
  background: #001f3f;
  color: #fff;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 48px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.contact-cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-cta p {
  font-size: 1.15rem;
  color: #eee;
  margin-bottom: 24px;
}
.contact-cta .btn-primary {
  background: gold;
  color: #001f3f;
  font-size: 1.1rem;
  padding: 14px 32px;
}

.testimonials-section {
  background: #f7f9fa;
  padding: 60px 24px 80px 24px;
  text-align: center;
}
.testimonials-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 48px;
}
.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.testimonial-slider-track {
  display: flex;
  width: calc(352px * 6); /* (card width + gap) * (number of original cards * 2) */
  animation: scroll 40s linear infinite;
  gap: 32px;
}
.testimonial-slider-container:hover .testimonial-slider-track {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-352px * 3)); /* (card width + gap) * number of original cards */
  }
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 320px;
  flex-shrink: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 18px 0;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 1rem;
  font-weight: 600;
  color: #232933;
  font-style: normal;
}
@media (max-width: 900px) {
  .testimonial-slider-track {
    animation-duration: 30s;
  }
}
@media (max-width: 900px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
}
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: transform 0.2s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

.featured-properties, .new-listings, .sold-out-projects {
  text-align: center;
}

/* Unified filter form styling */
.property-search-form-horizontal, #property-filter-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 32px 28px;
  margin: 0 auto 3rem auto;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.property-search-form-horizontal::before, #property-filter-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #bfa14a, #ffd700);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.property-search-form-horizontal:focus-within, #property-filter-form:focus-within {
  box-shadow: 0 12px 40px rgba(191,161,74,0.15);
  border-color: #ffd700;
  transform: translateY(-2px);
}
.property-search-form-horizontal select,
.property-search-form-horizontal input[type="text"],
#property-filter-form select,
#property-filter-form input[type="text"] {
  min-width: 180px;
  max-width: 220px;
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  background: #ffffff;
  border-radius: 12px;
  margin: 0;
  outline: none;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.property-search-form-horizontal select:focus,
.property-search-form-horizontal input[type="text"]:focus,
#property-filter-form select:focus,
#property-filter-form input[type="text"]:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  transform: translateY(-1px);
}
.property-search-form-horizontal .btn-primary,
#property-filter-form .btn-primary {
  margin-left: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd700, #bfa14a);
  color: #001f3f;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.property-search-form-horizontal .btn-primary:hover,
#property-filter-form .btn-primary:hover {
  background: linear-gradient(135deg, #bfa14a, #ffd700);
  color: #001f3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
/* Mobile responsive styles for filter forms */
@media (max-width: 900px) {
  .property-search-form-horizontal, #property-filter-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
    padding: 24px 20px;
    justify-content: center;
  }
  
  .property-search-form-horizontal select,
  .property-search-form-horizontal input[type="text"],
  #property-filter-form select,
  #property-filter-form input[type="text"] {
    min-width: 140px;
    max-width: 160px;
    flex: 1 1 auto;
  }
  
  .property-search-form-horizontal .btn-primary,
  #property-filter-form .btn-primary {
    margin-left: 0;
    margin-top: 0;
    flex: 1 1 auto;
    min-width: 140px;
  }
}

/* Exquisite mobile matrix layout for filter forms */
@media (max-width: 768px) {
  .property-search-form-horizontal, #property-filter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 2px solid #e8e8e8;
  }
  
  .property-search-form-horizontal select,
  .property-search-form-horizontal input[type="text"],
  #property-filter-form select,
  #property-filter-form input[type="text"] {
    min-width: 100%;
    max-width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    background: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  
  .property-search-form-horizontal select:focus,
  .property-search-form-horizontal input[type="text"]:focus,
  #property-filter-form select:focus,
  #property-filter-form input[type="text"]:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
  }
  
  .property-search-form-horizontal .btn-primary,
  #property-filter-form .btn-primary {
    grid-column: 1 / -1;
    margin: 8px 0 0 0;
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd700, #bfa14a);
    color: #001f3f;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .property-search-form-horizontal .btn-primary:hover,
  #property-filter-form .btn-primary:hover {
    background: linear-gradient(135deg, #bfa14a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  }
}

@media (max-width: 480px) {
  .property-search-form-horizontal, #property-filter-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .property-search-form-horizontal select,
  .property-search-form-horizontal input[type="text"],
  #property-filter-form select,
  #property-filter-form input[type="text"] {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  
  .property-search-form-horizontal .btn-primary,
  #property-filter-form .btn-primary {
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 10px;
  }
}

.about-hero {
  background: #fff;
  padding: 48px 0 24px 0;
  text-align: left;
}
.about-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-breadcrumb {
  color: #888;
  font-size: 1rem;
  margin-bottom: 12px;
}
.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 10px;
}
.about-hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
}
.about-cards-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px auto 60px auto;
  max-width: 1100px;
  padding: 0 24px;
}
.about-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.about-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 10px;
}
.about-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
.about-story-section {
  background: #181818;
  color: #fff;
  padding: 60px 0;
}
.about-story-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
}
.about-story-text {
  flex: 2;
}
.about-story-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.about-story-text p {
  font-size: 1.08rem;
  color: #eee;
  line-height: 1.7;
}
.about-story-img {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
}
.about-story-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.about-services-overview {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}
.about-services-overview h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 36px;
}
.about-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-service-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  min-width: 340px;
  max-width: 520px;
  flex: 1 1 420px;
  padding: 24px 18px;
  gap: 24px;
  text-align: left;
}
.about-service-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.about-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 8px;
}
.about-service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .about-cards-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .about-story-content {
    flex-direction: column;
    gap: 24px;
  }
  .about-services-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .about-service-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    gap: 12px;
  }
  .about-service-card img {
    width: 100%;
    height: 120px;
    max-width: 100%;
  }
} 

/* About team section - Original design matching live website */
.about-team-section {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.about-team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 36px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-team-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 320px;
  flex: 1 1 300px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #ffd700;
}

.about-team-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  background: #f8f9fa;
}

.about-team-card > div {
  padding: 20px;
  width: 100%;
}

.about-team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232933;
  margin-bottom: 8px;
  line-height: 1.3;
}

.about-team-card .team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-team-card p:last-child {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 16px;
  }
  
  .about-team-card {
    min-width: 250px;
    max-width: 100%;
  }
  
  .about-team-card img {
    height: 180px;
    object-fit: contain;
    object-position: center;
  }
  
  .about-team-card > div {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-team-card img {
    height: 160px;
    object-fit: contain;
    object-position: center;
  }
} 

/* Filtered results styling */
.filtered-results h3 {
  color: #001f3f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid gold;
}

.filtered-results .no-results {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.available-properties h3 {
  color: #001f3f;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}