* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #222;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background: #0b1c2d;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #f4b400;
}

.header-btn {
  background: #f4b400;
  color: #111;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.header-btn:hover {
  background: #fff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(11, 28, 45, 0.75), rgba(11, 28, 45, 0.75)),
              url('../images/banner/hero-banner.jpg') center/cover no-repeat;
  padding: 140px 0;
}

.hero-content {
  max-width: 700px;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  background: rgba(244, 180, 0, 0.15);
  color: #f4b400;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #f4b400;
  color: #111;
}

.btn-primary:hover {
  background: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* Common Section */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #f4b400;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
  color: #0b1c2d;
}

/* About Section */
.about-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 17px;
  color: #555;
}

/* Categories */
.categories-grid,
.work-grid,
.packages-grid,
.why-grid,
.contact-grid,
.footer-container {
  display: grid;
  gap: 25px;
}

.categories-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h3 {
  font-size: 20px;
  color: #0b1c2d;
}

/* How It Works */
.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.work-number {
  width: 60px;
  height: 60px;
  background: #f4b400;
  color: #111;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card h3 {
  margin-bottom: 15px;
  color: #0b1c2d;
}

/* Packages */
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.featured-package {
  border: 2px solid #f4b400;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4b400;
  color: #111;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.package-card h3 {
  font-size: 24px;
  color: #0b1c2d;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #f4b400;
  margin: 20px 0;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.package-card ul li {
  margin-bottom: 12px;
  color: #555;
}

/* Why Choose */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  color: #0b1c2d;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* CTA */
.cta-section {
  background: #0b1c2d;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-content p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  color: #ddd;
}

/* Forms */
.property-form,
.contact-form,
.finder-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.upload-label {
  margin-bottom: 10px;
  font-weight: 600;
  color: #0b1c2d;
}

/* Contact */
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.contact-card h3 {
  margin-bottom: 12px;
  color: #0b1c2d;
}

/* Footer */
.footer {
  background: #081521;
  color: #fff;
  padding: 30px 0;
}

.footer-container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.footer-left h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  margin-bottom: 8px;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(11, 28, 45, 0.8), rgba(11, 28, 45, 0.8)),
              url('../images/banner/page-banner.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.banner-content p {
  color: #ddd;
  font-size: 18px;
}

@media (max-width: 768px) {

  .property-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
  }

  .full-width {
    grid-column: span 1;
  }

  .post-property-section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.7;
  }

  .btn,
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

}