:root {
    --primary: #c9a050;
    --dark: #121212;
    --light: #ffffff;
    --gray: #1e1e1e;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; background: var(--dark); color: var(--light); scroll-behavior: smooth; }

nav { display: flex; justify-content: space-between; padding: 20px 5%; background: rgba(0,0,0,0.8); position: fixed; width: 90%; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: bold; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; gap: 20px; }
nav a { text-decoration: none; color: var(--light); transition: 0.3s; }
nav a:hover { color: var(--primary); }

.hero { height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com'); background-size: cover; }
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.btn { padding: 12px 30px; background: var(--primary); color: white; text-decoration: none; border-radius: 5px; margin: 10px; display: inline-block; }
.btn.secondary { background: transparent; border: 2px solid var(--primary); }

.property-grid { padding: 80px 5%; }
.container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--gray); border-radius: 10px; overflow: hidden; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 20px; }
.price { color: var(--primary); font-size: 1.2rem; font-weight: bold; }


/* CTA */
.cta {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  margin: 10;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

/* Footer */
.footer {
  margin-top: 32px;
  padding: 28px 16px 12px;
  background-color: #0f172a;
  color: #e5e7eb;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.footer h4 {
  margin-bottom: 6px;
}

.footer a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.card-content a {
    color: white;   /* Change to any color you want */
    text-decoration: none; /* Optional: removes underline */
}

.card-content a:hover {
    color: var(--primary);  /* Optional: color when hovered */
}

.image-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px;
}

.image-scroll img {
    max-height: 150px; /* adjust as needed */
    border-radius: 5px;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.carousel img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 5px;
}*/
.carousel img {
    max-height: 200px;
    width: auto;          /* don’t stretch horizontally */
    object-fit: contain;  /* fit inside without cropping */
}
.carousel .prev, .carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel .prev { left: 10px; }
.carousel .next { right: 10px; }


    .cta-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .cta-text {
      font-size: 0.9rem;
      color: #d1d5db;
    }

    .cta-form {
      width: 100%;
      max-width: 380px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.6rem;
    }

    @media (min-width: 520px) {
      .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      font-size: 0.8rem;
    }

    .form-field label {
      color: #e5e7eb;
    }

    .form-field input,
    .form-field textarea {
      border-radius: 999px;
      border: 1px solid #374151;
      background: #020617;
      color: #f9fafb;
      padding: 0.45rem 0.75rem;
      font-size: 0.85rem;
      outline: none;
    }

    .form-field textarea {
      border-radius: 0.75rem;
      min-height: 70px;
      resize: vertical;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #6b7280;
    }

    .form-actions {
      margin-top: 0.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .whatsapp-link {
      font-size: 0.85rem;
      color: #22c55e;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: white;
    }
	.cta-main {
      margin-bottom: 1rem;
    }
