* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img {
  height: 42px;
}

/* NAV */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #03773f;
}

/* TRANSPARENT */
.header-transparent {
  background: transparent;
}

/* STICKY */
.header-sticky {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-100%);
}

.header-sticky.active {
  transform: translateY(0);
}

/* SEARCH BAR – DESKTOP */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  max-width: 620px;
}

.search-bar select {
  border: none;
  padding: 10px 14px;
  border-radius: 30px;
  background: #f4f6f5;
  font-weight: 600;
  color: #03773f;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

.search-bar button {
  border: none;
  padding: 12px 22px;
  background: linear-gradient(135deg, #03773f, #76b64b);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
}

.search-bar:focus-within {
  box-shadow: 0 0 0 2px rgba(118,182,75,0.4);
}

/* TOGGLE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #03773f;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: #ffffff;
  padding: 24px;
  z-index: 1000;
  transition: right 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 32px;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #03773f;
}

/* MOBILE SEARCH */
.mobile-search {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-search select,
.mobile-search input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.mobile-search button {
  padding: 14px;
  background: linear-gradient(135deg, #03773f, #76b64b);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 6px;
}

/* BUY BUTTON */
.buy-btn {
  margin-top: 30px;
  display: block;
  text-align: center;
  padding: 15px;
  background: #f18f37;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
}

.hero-slider {
  position: relative;
  height: 60vh;
  background: #000;
  overflow: hidden;
}

/* SLIDES */
.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* FIXED: NO CUTTING */
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

/* ARROWS */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.nav-arrow.left { left: 20px; }
.nav-arrow.right { right: 20px; }

/* SEARCH WRAPPER */
.hero-search-wrapper {
  position: relative;
  margin-top: -80px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

/* SEARCH CARD */
.hero-search {
  width: 800px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* TABS */
.search-tabs {
  border-bottom: 1px solid #e6e6e6;
}

.tabs-track {
  display: flex;
  gap: 8px;
}

.tab {
  flex: 1;
  padding: 14px;
  border: none;
  background: none;
  font-weight: 800;
  cursor: pointer;
  color: #555;
}

.tab.active {
  color: #03773f;
  border-bottom: 3px solid #03773f;
  font-weight: 900;
}

/* SEARCH BOX */
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.search-box select {
  border: none;
  background: #f4f6f5;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 800;
  color: #03773f;
}

.search-box input {
  flex: 1;
  border: none;
  font-size: 14px;
  outline: none;
}

.search-icons span {
  font-size: 18px;
  cursor: pointer;
}

.search-btn {
  background: linear-gradient(135deg, #03773f, #76b64b);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

  .hero-slider {
    height: 45vh;
  }

  .hero-search-wrapper {
    margin-top: 20px; /* SEARCH MOVED DOWN */
    padding: 0 10px;
  }

  .hero-search {
    width: 100%;
  }

  .mobile-tabs {
    overflow: hidden;
    padding: 10px;
  }

  .tabs-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs-track::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    background: #f3f3f3;
    padding: 10px 16px;
    border-radius: 20px;
    border-bottom: none;
  }

  .tab.active {
    background: #03773f;
    color: #fff;
  }

  .search-box {
    flex-wrap: wrap;
  }

  .search-btn {
    width: 100%;
    margin-top: 10px;
  }
}



.content {
  height: 1500px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-nav,
  .search-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


.site-footer {
  background: linear-gradient(180deg, #141c22, #0f1419);
  color: #ffffff;
  padding: 60px 20px 0;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd6dc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  color: #cfd6dc;
  margin-bottom: 8px;
}

.small-text {
  font-size: 12px;
  color: #9aa5ad;
}

.mt {
  margin-top: 24px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #1f2a33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #f18f37;
}

/* APP BUTTONS */
.app-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.app-buttons img {
  height: 40px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1f2a33;
  margin-top: 50px;
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #9aa5ad;
}

.footer-bottom p a {
  text-decoration: none;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}



.real-estate-make {
  padding: 50px 15px;
  font-family: 'Open Sans', sans-serif;
}

.rem-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.rem-left {
  width: 70%;
}

.rem-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rem-right img {
  width: 100%;
  border-radius: 10px;
}

/* BLOCK */
.rem-block {
  margin-bottom: 50px;
}

.rem-header h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.rem-header p {
  color: #666;
}

/* CAROUSEL */
.rem-carousel {
  position: relative;
  margin-top: 20px;
}

.rem-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.rem-track::-webkit-scrollbar {
  display: none;
}

.rem-card {
  min-width: 260px;
  flex-shrink: 0;
}

.img-wrapper {
  position: relative;
}

.rem-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

/* OC BADGE */
.oc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rem-card h4 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.rem-card p,
.rem-card small {
  font-size: 13px;
  color: #666;
}

/* ARROWS */
.rem-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rem-arrow.left { left: -15px; }
.rem-arrow.right { right: -15px; }

@media (max-width: 992px) {
  .rem-wrapper {
    flex-direction: column;
  }

  .rem-left,
  .rem-right {
    width: 100%;
  }

  .rem-right {
    margin-top: 30px;
  }

  .rem-arrow {
    display: none; /* hide arrows on mobile */
  }
}



.second-my-slide {
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
}

.second-my-slide .ps-header {
  max-width: 1300px;
  margin: auto;
}

.second-my-slide .ps-header h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.second-my-slide .ps-header p {
  color: #666;
}

.second-my-slide .ps-carousel {
  max-width: 1300px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* SIDE CARDS */
.second-my-slide .ps-side {
  width: 22%;
  min-height: 260px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-my-slide .ps-side.left {
  background: linear-gradient(135deg, #efe7ff, #f6c9c3);
}

.second-my-slide .ps-side.right {
  background: linear-gradient(135deg, #d7d4e6, #fde6d8);
}

.second-my-slide .ps-card-content {
  padding: 20px;
}

.second-my-slide .ps-logo {
  font-weight: 700;
  margin-bottom: 10px;
}

.second-my-slide .ps-price {
  font-weight: 700;
  margin: 10px 0;
}

.second-my-slide .ps-card-content button {
  margin-top: 12px;
  background: #5b2be0;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* CENTER IMAGE */
.second-my-slide .ps-center {
  width: 56%;
  border-radius: 18px;
  overflow: hidden;
}

.second-my-slide .ps-track {
  position: relative;
  height: 360px;
}

.second-my-slide .ps-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.second-my-slide .ps-track img.active {
  opacity: 1;
}

/* NAVIGATION */
.second-my-slide .ps-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.second-my-slide .ps-nav.left { left: -10px; }
.second-my-slide .ps-nav.right { right: -10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .second-my-slide .ps-carousel {
    flex-direction: column;
  }

  .second-my-slide .ps-side,
  .second-my-slide .ps-center {
    width: 100%;
  }

  .second-my-slide .ps-track {
    height: 240px;
  }

  .second-my-slide .ps-nav {
    top: auto;
    bottom: -50px;
  }
}


.proprety-lisiting {
  background:#f4f6f9;
  padding:30px;
  /* margin-top: 100px; */
  font-family:'Open Sans',sans-serif;
}

.pl-container {
  max-width:1400px;
  margin:auto;
  display:flex;
  gap:28px;
}

/* FILTERS */
.pl-filters {
  width:30%;
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.filter-title {
  display:flex;
  justify-content:space-between;
  margin-bottom:14px;
}

.filter-chip {
  background:#e8f0ff;
  padding:8px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:14px;
}

.filter-chip.active {
  background:#1a73e8;
  color:#fff;
}

.filter-group {
  margin-top:18px;
}

.filter-group h4 {
  margin-bottom:10px;
}

.double-select {
  display:flex;
  gap:10px;
}

.double-select select {
  flex:1;
  padding:8px;
  border-radius:8px;
  border:1px solid #ddd;
}

.pill-group span {
  display:inline-block;
  padding:8px 14px;
  border:1px solid #ddd;
  border-radius:20px;
  margin:4px;
  cursor:pointer;
  transition:.3s;
}

.pill-group span:hover,
.pill-group .active {
  background:#1a73e8;
  color:#fff;
}

/* TOGGLE */
.toggle {
  width:38px;
  height:20px;
  position:relative;
}
.toggle input {display:none;}
.toggle span {
  position:absolute;
  inset:0;
  background:#ccc;
  border-radius:20px;
}
.toggle span:before {
  content:'';
  width:16px;
  height:16px;
  background:#fff;
  position:absolute;
  top:2px;
  left:2px;
  border-radius:50%;
  transition:.3s;
}
.toggle input:checked + span {
  background:#1a73e8;
}
.toggle input:checked + span:before {
  transform:translateX(18px);
}

/* RESULTS */
.pl-results {
  width:70%;
}

.property-card {
  background:#fff;
  border-radius:16px;
  display:flex;
  gap:24px;
  padding:20px;
  margin-bottom:20px;
  margin-top: 20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
}

.property-card:hover {
  transform:translateY(-6px);
}

.property-img {
  width:300px;
  height:200px;
  position:relative;
}

.property-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

.badge {
  position:absolute;
  top:10px;
  left:10px;
  background:#000;
  color:#fff;
  padding:4px 8px;
  border-radius:6px;
  font-size:12px;
}

.property-info {
  flex:1;
  line-height: 2rem;
}

.property-info strong {
  display:block;
  margin:8px 0;
}

.actions {
  margin-top:14px;
}

.btn-outline {
  border:1px solid #1a73e8;
  background:#fff;
  color:#1a73e8;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
}

.btn-primary {
  background:#1a73e8;
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  border:none;
  margin-left:10px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .pl-container {
    flex-direction:column;
  }
  .pl-filters,
  .pl-results {
    width:100%;
  }
  .property-card {
    flex-direction:column;
  }
  .property-img {
    width:100%;
    height:220px;
  }
  .actions button {
    width:100%;
    margin:6px 0;
  }
}


/* MOBILE ORDER FIX */
@media (max-width: 900px) {

  .pl-container {
    flex-direction: column;
  }

  /* Property list FIRST */
  .pl-results {
    order: 1;
  }

  /* Filters at the BOTTOM */
  .pl-filters {
    order: 2;
    margin-top: 20px;
  }

}


.check-list{
  line-height: 2.5rem;
}