
body {
  font-family: Inter, sans-serif;
  background-color: #f6f7f9;
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 20px 40px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.navbar-logo img {
  height: 100px;
}

.navbar-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar-links a {
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: #3c54df;
}

.connect-button {
  background-color: #61cd81;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #3c54df;
}

.mobile-dropdown {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  color: #2a2a2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: #3c54df;
}

.mobile-dropdown a {
  margin: 10px 0;
}

.show-menu {
  display: flex !important;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px;
  max-width: 1440px;
  margin: auto;
}

.property-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-image-wrapper {
  position: relative;
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #a78bfa;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 2;
}

.heart-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.property-info {
  padding: 20px;
}

.property-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a1339;
}

.property-location,
.property-yield,
.property-return {
  font-size: 14px;
  margin-bottom: 4px;
  color: #535458;
}

.property-yield {
  color: #8956f8;
  font-weight: bold;
}

.property-available {
  background-color: #a78bfa;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 768px) {
.navbar-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

.footer {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 40px 20px 20px;
  font-size: 14px;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-icon {
  width: 48px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 10px 0;
  color: #555;
  max-width: 300px;
}

.cabinet-button {
  display: inline-block;
  background-color: #5bc278;
  color: white;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
}

.footer-center h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-center a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.footer-right {
  text-align: center;
}

.footer-logo {
  max-width: 130px;
  margin: auto;
  margin-bottom: 10px;
}

.footer-brand {
  color: #236e3b;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-left p {
    max-width: 100%;
  }
}

.connect-button-mobile {
  display: none;
  text-decoration: none;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .connect-button-mobile {
    display: inline-block;
    padding: 6px 14px;
    background-color: #10b981;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    margin-left: auto;
    margin-right: 10px;
  }

  .connect-button-mobile:hover {
    background-color: #553c9a;
  }
}