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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
  background: #fff;
  font-size: 16px;
}

/* HEADER */
#site-header {
  background: #fff;
  padding: 20px 40px 0px 40px;
  text-align: center;
}
.header-logo {
  margin-bottom: 4px;
}
.site-title {
  font-family: Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  color: #5BAAD4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
nav {
  display: flex;
  justify-content: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 48px;
  padding: 6px 0 10px 0;
  border-top: none;
  width: 100%;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: #5BAAD4;
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a:hover { color: #4a96c0; }
.nav-links li a { text-decoration: none; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #5BAAD4 0%, #4a96c0 100%);
  padding: 100px 40px;
  text-align: center;
}
.hero-content { max-width: 820px; margin: 0 auto; }
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 28px;
  line-height: 1.3;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #e8f4fb;
}

/* SECTIONS */
.section {
  padding: 20px 40px 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5BAAD4;
  margin-bottom: 52px;
}

/* SERVICES */
.services-section {
  border-bottom: 1px solid #eee;
  max-width: 100%;
  background: #f4f9fd;
  padding: 20px 40px 80px 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2;
}
.services-grid .service-card:nth-child(6) {
  grid-column: 3;
}
.service-card h3 {
  font-size: 1rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #5BAAD4;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* PROPERTIES */
.properties-section { border-bottom: 1px solid #eee; }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}
.property-card { text-align: center; }
.property-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 18px;
  box-shadow: none;
}
.property-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5BAAD4;
  margin-bottom: 12px;
}
.property-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid #ddd;
}
.tab-btn {
  background: none;
  border: none;
  padding: 14px 40px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s;
}
.tab-btn.active {
  color: #5BAAD4;
  border-bottom: 3px solid #5BAAD4;
}
.tab-btn:hover { color: #5BAAD4; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.pdf-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  color: #5BAAD4;
  text-decoration: none;
  border: 1px solid #5BAAD4;
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s;
}
.pdf-link:hover { background: #5BAAD4; color: #fff; }

/* CONTACT */
.contact-section {
  border-top: 1px solid #eee;
  background: #f4f9fd;
  max-width: 100%;
  padding: 20px 40px 80px 40px;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-email a {
  color: #5BAAD4;
  font-size: 1rem;
  text-decoration: none;
}
.contact-email a:hover { text-decoration: underline; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  color: #5BAAD4;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5BAAD4;
}
.contact-form button {
  padding: 14px;
  background: #5BAAD4;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: #4a96c0; }

/* FOOTER */
footer {
  text-align: center;
  padding: 28px;
  font-size: 0.8rem;
  color: #fff;
  background: #5BAAD4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
#available-grid .property-card img {
  height: auto;
  width: 100%;
  max-width: 400px;
  object-fit: unset;
  margin: 0 auto;
  display: block;
}
  /* HEADER */
  #site-header {
    padding: 14px 20px 0px 20px;
  }
  .site-title {
    font-size: 2.2rem;
  }
  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a {
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 40px 24px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.95rem;
  }

  /* SECTIONS */
  .section {
    padding: 16px 24px 50px 24px;
  }
  .section-label {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  /* SERVICES - stack to 2 columns on mobile */
  .services-section {
    padding: 16px 24px 50px 24px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
  .services-grid .service-card:nth-child(5) {
    grid-column: 1 !important;
  }
  .services-grid .service-card:nth-child(6) {
    grid-column: 2 !important;
  }
  .service-card h3 {
    font-size: 0.9rem;
  }
  .service-card p {
    font-size: 0.82rem;
  }

  /* PROPERTIES - stack to single column */
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tab-btn {
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  /* CONTACT */
  .contact-section {
    padding: 16px 24px 50px 24px;
  }
  .contact-form {
    max-width: 100%;
  }

  /* FOOTER */
  footer {
    font-size: 0.75rem;
    padding: 20px;
  }
}
