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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 4px;
  color: #1e3a8a;
}

.brand-text span {
  font-size: 0.95rem;
  color: #7c8aa5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  color: #1e3a8a;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #cfa34a;
  transition: 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-btn {
  border: none;
  background: #1e3a8a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #1e3a8a, #2b57b6);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero--image {
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.5)),
    radial-gradient(circle at top left, rgba(207, 163, 74, 0.25), transparent 40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M0 120h240M120 0v240'/%3E%3Cpath d='M60 0v240M180 0v240M0 60h240M0 180h240'/%3E%3C/g%3E%3C/svg%3E")
    center/240px repeat;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #facc15;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.subtitle {
  color: #e2e8f0;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.18);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn.primary {
  background: #cfa34a;
  color: #1f2937;
}

.btn.primary:hover {
  background: #b88c35;
}

.btn.ghost {
  border-color: #dbeafe;
  color: #ffffff;
  background: transparent;
}

.btn.ghost:hover {
  border-color: #cfa34a;
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.18);
}

.hero-card h3 {
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: disc;
  padding-inline-start: 20px;
  color: #e2e8f0;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card h3 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

.property-card .image-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
  display: grid;
  place-items: center;
}

.project-card .image-placeholder {
  height: 200px;
}

.card-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.meta {
  color: #6b7a98;
  font-size: 0.95rem;
}

.features {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 0.95rem;
}

.features span::before {
  content: "✓";
  color: #1e3a8a;
  margin-inline-end: 6px;
}

.center-actions {
  margin-top: 24px;
  text-align: center;
}

.center-actions .btn.ghost {
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill {
  border-radius: 999px;
  border: 2px solid #1e3a8a;
  background: #ffffff;
  padding: 10px 18px;
  font-weight: 700;
  color: #1e3a8a;
  cursor: pointer;
  transition: 0.2s ease;
}

.pill:hover {
  background: #eff6ff;
}

.pill.is-active {
  background: #1e3a8a;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  transition: 0.2s ease;
  display: grid;
  gap: 6px;
}

.contact-card:hover {
  border-color: #2b57b6;
  transform: translateY(-2px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: #1e3a8a;
}

.interest-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

.interest-form input:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: #2b57b6;
  box-shadow: 0 0 0 3px rgba(43, 87, 182, 0.15);
}

.interest-form textarea {
  resize: vertical;
}

.stats {
  padding: 32px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  display: grid;
  gap: 8px;
}

.stat-card strong {
  font-size: 1.8rem;
  color: #1e3a8a;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.about-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #475569;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    justify-content: center;
  }
}
