/* HERO WRAPPER */
.hero-header {
  position: relative;
}

/* Hero wrapper */
.hero-slide {
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* Image full cover */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* makes image like background cover */
}

/* Dark overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slide {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slide {
    height: 400px;
  }

 
}/* section background */
.featured-property {
  background: #f8fafc;
  padding: 60px 0;
}
.property-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.property-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

/* Image */
.property-img img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Content */
.property-content{
    padding:20px;
}

.property-category{
    color:#7a7a7a;
    font-size:13px;
}

.property-type{
    font-weight:600;
    margin:6px 0;
}

/* Fix messy text */
.property-address{
    font-size:14px;
    color:#666;
    margin-bottom:10px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Price */
.property-price{
    color:#d4663b;
    font-weight:700;
    margin-bottom:4px;
}

.property-area{
    font-size:13px;
    color:#777;
}

/* Button */
.property-btn{
    margin-top:15px;
    background:#d4663b;
    color:#fff;
    width:100%;
    border-radius:8px;
    font-weight:500;
}

.property-btn:hover{
    background:#bf5630;
    color:#fff;
}

/* property info */
.property-info h6 {
  color: #6c757d;
  font-size: 14px;
}

.property-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.property-info p {
  font-size: 14px;
}

/* price highlight */
.price {
  font-size: 26px;
  font-weight: 700;
  color: #5a67d8;
}

/* modern button */
.contact-btn {
  background: #5a67d8;
  color: white;
  border-radius: 10px;
  padding: 12px;
  border: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #4c51bf;
  transform: translateY(-2px);
}

/* thumbnails */
.property-thumbs {
  align-items: center;
}

.thumb-box {
  width: 65px;
  height: 65px;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
}

.thumb-image:hover {
  transform: scale(1.08);
  border-color: #5a67d8;
}

/* better slider arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 18px;
  height: 18px;
}

/* SECTION */
.lands-section {
  background: #f6f6fb;
}

/* CARD */
.land-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.land-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.land-card:hover img {
  transform: scale(1.05);
}

/* FEATURED BADGE */
.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #49c04a;
  color: white;
  font-size: 12px;
  padding: 6px 10px;
}

/* OVERLAY */
.land-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* TAGS */
.tags span {
  background: rgba(0, 0, 0, 0.7);
  font-size: 11px;
  padding: 4px 8px;
  margin-right: 6px;
}

/* TEXT */
.land-overlay h5 {
  margin-top: 10px;
  font-weight: 600;
}

.land-overlay h6 {
  font-weight: 700;
}

/* SECTION */
.approach-section {
  background: #1d2733;
  color: #fff;
  padding: 120px 0;
}

/* LEFT SIDE */
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 25px;
}

.approach-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

/* RIGHT SIDE */
.approach-right {
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* ITEMS */
.approach-item {
  margin-bottom: 50px;
}

.step-label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.step-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .approach-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .approach-right {
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
  }
}
