:root {
  --brand: #b99d5f;
  --brand-dark: #a88c52;
  --brand-light: #d2bb87;
  --background: #ffffff;
  --foreground: #000000;
  --muted: #4a4a4a;
  --border: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  height: 60px;
}

header a:has(.logo) {
  text-decoration: none;
  display: inline-block;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: var(--brand);
  color: white;
}

nav a.active {
  background-color: var(--brand);
  color: white;
  font-weight: 600;
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--foreground);
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 101;
  padding: 6.5rem 2rem 2rem;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.mobile-sidebar nav a {
  margin-left: 0;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}

.mobile-sidebar nav a.active {
  background-color: var(--brand);
  color: white;
  font-weight: 600;
  border-left: 4px solid var(--brand-dark);
}

.mobile-sidebar-logo {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.mobile-sidebar-logo .logo {
  height: 50px;
  width: auto;
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 98;
}

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

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.85) contrast(0.9) saturate(0.7);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  object-fit: contain;
  clip-path: inset(2% 2% 2% 2%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: black;
}

section {
  padding: 4rem 2rem;
}

.listings-section-with-logo {
  background: white;
  position: relative;
  overflow: hidden;
}

.listings-section-with-logo::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2000px;
  height: 2000px;
  background-image: url('../logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.listings-section-with-logo > * {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--brand);
}

.card svg {
  color: var(--brand);
}

.card svg path {
  fill: var(--brand);
}

.card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
}

.cta {
  background: white;
  color: black;
  text-align: center;
}

.values-section {
  background: white;
  padding: 4rem 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.value-card svg path {
  fill: var(--brand);
}

.value-card svg circle {
  fill: var(--brand);
}

.value-icon svg {
  width: 48px;
  height: 48px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.value-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.team-section {
  background: var(--brand);
  padding: 4rem 2rem;
  color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

.team-member:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-avatar svg {
  width: 80px;
  height: 80px;
}

.team-section .section-title {
  color: white;
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.team-role {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.partners-section {
  background: white;
  padding: 4rem 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.partner-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.partner-card svg path {
  fill: var(--brand);
  stroke: var(--brand);
}

.partner-card svg circle {
  stroke: var(--brand);
}

.partner-icon svg {
  width: 48px;
  height: 48px;
}

.partner-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.partner-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-content {
  flex: 1;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form-wrapper {
  max-width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.map-container {
  margin-top: 4rem;
  padding: 2rem 2rem;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

main {
  flex: 1;
}

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  color: #e5e5e5 !important;
  padding: 0 !important;
  margin-top: auto !important;
}

.footer-main {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 4rem 2rem 2rem !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 3rem !important;
}

.footer-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.footer-logo-section {
  max-width: 300px !important;
}

.footer-logo-section .logo {
  height: auto !important;
  width: 180px !important;
  max-width: 100% !important;
  max-height: 80px !important;
  min-height: unset !important;
  margin-bottom: 1rem !important;
  filter: brightness(1.1) !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-section h3 {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #b5b5b5;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d5d5d5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, padding-left 0.3s;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--brand);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  color: #d5d5d5 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.footer-contact-item svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  color: var(--brand) !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  display: block !important;
}

.footer-contact-item a {
  color: #d5d5d5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--brand);
}

.footer-social {
  display: flex !important;
  gap: 1rem !important;
  margin-top: 1rem !important;
  flex-wrap: wrap !important;
}

.footer-social a {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50% !important;
  background: rgba(185, 157, 95, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--brand) !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.footer-social a:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(185, 157, 95, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

.footer-divider {
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 157, 95, 0.3), transparent);
}

@media (min-width: 1920px) {
  .footer-logo-section .logo {
    max-width: 180px;
    max-height: 80px;
  }

  .footer-social a {
    max-width: 40px;
    max-height: 40px;
  }

  .footer-social svg {
    max-width: 20px;
    max-height: 20px;
  }

  .footer-contact-item svg {
    max-width: 20px;
    max-height: 20px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-logo-section {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo-section .logo {
    height: auto !important;
    width: 150px !important;
    max-width: 100% !important;
    max-height: 60px !important;
    min-height: unset !important;
    object-fit: contain !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-social {
    justify-content: center;
  }
}

.listings-with-filters {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.filters-container {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filters-container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.95rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.price-inputs input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.price-inputs span {
  color: var(--muted);
}

.filter-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  background: white;
  cursor: pointer;
}

.room-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.room-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--foreground);
}

.room-checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand);
}

.filters-container .btn-secondary {
  background: var(--brand);
  border: 2px solid var(--brand);
  color: white;
}

.filters-container .btn-secondary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: white;
}

.listings-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.listing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 1;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.listing-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.listing-content {
  padding: 1.5rem;
}

.listing-detail-info-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.listing-detail-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f9f9f9;
  border-radius: 0.5rem;
  flex: 1;
}

.listing-detail-info-card svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
}

.listing-detail-info-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
}

.listing-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.listing-detail-header-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  width: 100%;
}

.listing-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem 2rem;
}

.listing-detail-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.listing-detail-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}

.listing-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
  align-self: start;
}

.listing-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.listing-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.listing-price-large {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.listing-status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.listing-status-available {
  background: #d4edda;
  color: #155724;
}

.listing-status-rented {
  background: #f8d7da;
  color: #721c24;
}

.listing-contact-info {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.listing-contact-info p {
  margin-bottom: 0.5rem;
}

.listing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.listing-features-grid li {
  list-style: none;
  padding-left: 0;
  position: relative;
  padding-left: 1.5rem;
}

.listing-features-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

@media (max-width: 968px) {
  .listing-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .listing-detail-sidebar {
    position: static;
  }
  
  .listing-detail-info-cards {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .listing-features-grid {
    grid-template-columns: 1fr;
  }
}

.listing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.listing-address {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.listing-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.listing-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-available {
  background: #d4edda;
  color: #155724;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-logo {
    max-width: 250px;
  }

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  header {
    padding: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    padding: 2rem 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-card {
    padding: 1.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  
  .contact-card {
    padding: 1.25rem;
  }
  
  .map-container {
    margin-top: 2rem;
    padding: 1rem 1rem;
  }
  
  .map-wrapper {
    padding: 0;
  }
  
  .map-wrapper iframe {
    height: 350px;
  }
  
  .listings-with-filters {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .filters-container {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Listing Detail Page Styles */
.listing-detail-container {
  background: white;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

.listing-detail-header-section {
  margin-bottom: 3rem;
}

.listing-detail-title {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.listing-detail-address {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.listing-detail-info-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.listing-detail-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.listing-detail-info-card svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
}

.listing-detail-info-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.listing-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.listing-detail-main-content {
  min-width: 0;
}

.listing-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.listing-description-section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.listing-description-section h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--foreground);
}

.listing-description-section p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.listing-features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
  padding: 0;
}

.listing-features-grid li {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--brand);
  font-size: 0.95rem;
}

.listing-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.listing-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.listing-detail-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  font-weight: 600;
}

.listing-price-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.availability-text {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.listing-status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.listing-status-available {
  background: #d4edda;
  color: #155724;
}

.listing-status-rented {
  background: #f8d7da;
  color: #721c24;
}

.listing-contact-info {
  margin-bottom: 1.5rem;
}

.listing-contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.listing-contact-info strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-btn {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 0.875rem;
}

@media (max-width: 968px) {
  .listing-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .listing-detail-title {
    font-size: 2rem;
  }
  
  .listing-detail-image {
    height: 350px;
  }
  
  .listing-detail-info-cards {
    gap: 1rem;
  }
  
  .listing-detail-info-card {
    flex: 1;
    min-width: calc(50% - 0.5rem);
  }
}

@media (max-width: 640px) {
  .listing-detail-container {
    padding: 1rem;
  }
  
  .listing-detail-title {
    font-size: 1.75rem;
  }
  
  .listing-detail-image {
    height: 250px;
    border-radius: 8px;
  }
  
  .listing-detail-info-cards {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .listing-detail-info-card {
    min-width: 100%;
  }
  
  .listing-price-large {
    font-size: 2rem;
  }
  
  .listing-detail-card {
    padding: 1.5rem;
  }
  
  .listing-features-grid {
    grid-template-columns: 1fr;
  }
}

