/* style.css – Deancom Consult Kenya Ltd */
/* ===== reset & base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8f1f2;
  color: #2d1a2d;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== header ===== */
.header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(117, 65, 116, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #f1baa6;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.logo-text {
  color: #754174;
}

.logo-sub {
  font-weight: 400;
  color: #8a7a8a;
  font-size: 0.85rem;
  margin-left: 4px;
  background: rgba(117, 65, 116, 0.08);
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
}

.nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: #5a4a5a;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: #e15b40;
  border-bottom-color: #e15b40;
}

.header-cta .btn-outline {
  background: transparent;
  border: 1.5px solid #e15b40;
  color: #754174;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta .btn-outline:hover {
  background: #e15b40;
  color: #fff;
  border-color: #e15b40;
}

/* ===== buttons ===== */
.btn-primary {
  background: #e15b40;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: background 0.25s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #c34e59;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #754174;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  border: 1.5px solid #d0c8d0;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-secondary:hover {
  border-color: #754174;
  background: rgba(117, 65, 116, 0.05);
}

/* ===== hero ===== */
.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f1f2 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 91, 64, 0.10);
  color: #c34e59;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  color: #2d1a2d;
}

.hero h1 .highlight {
  color: #e15b40;
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: #5a4a5a;
  max-width: 90%;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid #e8e0e2;
  padding-top: 2rem;
}

.hero-stats div {
  font-size: 0.95rem;
  color: #5a4a5a;
}

.hero-stats span {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #754174;
  letter-spacing: -0.5px;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(117, 65, 116, 0.20);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #2d1a2d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.floating-card i {
  color: #e15b40;
}

/* ===== services snapshot ===== */
.services-snapshot {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(225, 91, 64, 0.08);
  color: #754174;
  padding: 0.2rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #2d1a2d;
}

.section-header h2 .highlight {
  color: #e15b40;
}

.section-header p {
  color: #5a4a5a;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #f8f1f2;
  padding: 2.5rem 1.8rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid #e8e0e2;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(117, 65, 116, 0.12);
  border-color: #e15b40;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(225, 91, 64, 0.08);
  border-radius: 20px;
  font-size: 1.8rem;
  color: #e15b40;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: #2d1a2d;
}

.service-card p {
  color: #5a4a5a;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===== contact info ===== */
.contact-info {
  padding: 4rem 0;
  background: #f8f1f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #754174;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #2d1a2d;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8e0e2;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list i {
  width: 24px;
  color: #e15b40;
  font-size: 1.1rem;
}

.contact-list .label {
  color: #8a7a8a;
  font-size: 0.8rem;
  margin-left: 0.25rem;
  font-weight: 400;
}

.contact-cta {
  display: flex;
  align-items: center;
}

.cta-box {
  background: #ffffff;
  padding: 2.5rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(117, 65, 116, 0.06);
  width: 100%;
  border: 1px solid #e8e0e2;
}

.cta-box h4 {
  font-size: 1.4rem;
  margin: 0.75rem 0 0.5rem;
  color: #2d1a2d;
}

.cta-box p {
  color: #5a4a5a;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta-box .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ===== footer ===== */
.footer {
  background: #754174;
  color: #f8f1f2;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand .logo-sub {
  background: rgba(255, 255, 255, 0.10);
  color: #f1baa6;
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  max-width: 260px;
  color: #b885a4;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: #b885a4;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #f1baa6;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #b885a4;
}

.footer-contact i {
  width: 18px;
  color: #f1baa6;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.06);
  color: #f8f1f2;
  transition: all 0.25s;
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: #e15b40;
  color: #fff;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #b885a4;
}

/* ===== animations ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== responsive ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image img {
    height: 300px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-desc {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .header-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .nav ul {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .header-cta {
    text-align: center;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .contact-list li {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .floating-card {
    left: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* ===== slideshow styles ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px 20px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  background: rgba(117, 65, 116, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
  text-decoration: none;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev:hover, .next:hover {
  background: rgba(117, 65, 116, 0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots/indicators */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #e15b40;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Adjust floating card position for slideshow */
.floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #2d1a2d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 5;
}

.floating-card i {
  color: #e15b40;
}

/* Responsive */
@media (max-width: 992px) {
  .slideshow-container {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .slideshow-container {
    height: 250px;
  }
  .prev, .next {
    padding: 10px 14px;
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}

/* ===== featured properties ===== */
.featured-properties {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

/* Property Filters */
.property-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  border: 2px solid #e8e0e2;
  background: transparent;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5a4a5a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: #e15b40;
  color: #754174;
}

.filter-btn.active {
  background: #754174;
  color: #fff;
  border-color: #754174;
}

.filter-btn.active:hover {
  background: #5a3a5a;
  border-color: #5a3a5a;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Property Card */
.property-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(117, 65, 116, 0.06);
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(117, 65, 116, 0.10);
}

.property-card.hidden {
  display: none;
}

.property-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.property-badge.sale {
  background: #754174;
  color: #fff;
}

.property-badge.rent {
  background: #e15b40;
  color: #fff;
}

.property-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.fav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #5a4a5a;
}

.fav-btn:hover {
  background: #fff;
  color: #c34e59;
  transform: scale(1.1);
}

.fav-btn.liked {
  color: #c34e59;
}

.fav-btn.liked i {
  font-weight: 900;
}

.property-details {
  padding: 1.5rem;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1a2d;
  margin-bottom: 0.3rem;
}

.property-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #8a7a8a;
}

.property-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1a2d;
  margin-bottom: 0.3rem;
}

.property-location {
  font-size: 0.9rem;
  color: #8a7a8a;
  margin-bottom: 1rem;
}

.property-location i {
  color: #e15b40;
  margin-right: 0.3rem;
}

.property-features {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.property-features span {
  font-size: 0.85rem;
  color: #5a4a5a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.property-features i {
  color: #e15b40;
  font-size: 0.9rem;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e8e0e2;
}

.property-agent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.property-agent img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.property-agent span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2d1a2d;
}

.property-btn {
  padding: 0.4rem 1.2rem;
  background: rgba(225, 91, 64, 0.08);
  color: #754174;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.property-btn:hover {
  background: #754174;
  color: #fff;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 1rem;
}

.view-all-container .btn-primary {
  padding: 0.85rem 3rem;
}

/* ===== responsive updates for properties ===== */
@media (max-width: 992px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .properties-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .property-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .property-image {
    height: 200px;
  }
  
  .property-price {
    font-size: 1.3rem;
  }
}

/* ===== search section ===== */
.search-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(135deg, #f8f1f2 0%, #ffffff 100%);
  border-bottom: 1px solid #e8e0e2;
}

.search-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(117, 65, 116, 0.06);
  border: 1px solid #e8e0e2;
}

.search-header {
  text-align: center;
  margin-bottom: 2rem;
}

.search-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1a2d;
  margin-bottom: 0.3rem;
}

.search-header h2 i {
  margin-right: 0.5rem;
  color: #e15b40;
}

.search-header p {
  color: #8a7a8a;
  font-size: 1rem;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.search-row:last-of-type {
  grid-template-columns: 1.5fr 0.8fr 1fr;
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.search-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d1a2d;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.search-group label i {
  color: #e15b40;
  font-size: 0.9rem;
}

/* Transaction Type Buttons */
.transaction-type {
  gap: 0.3rem;
}

.btn-group {
  display: flex;
  gap: 0.3rem;
  background: #f8f1f2;
  padding: 0.3rem;
  border-radius: 12px;
  width: fit-content;
}

.type-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #8a7a8a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.type-btn:hover {
  color: #754174;
}

.type-btn.active {
  background: #e15b40;
  color: #fff;
  box-shadow: 0 2px 8px rgba(225, 91, 64, 0.3);
}

/* Select inputs */
.search-select {
  padding: 0.7rem 1rem;
  border: 2px solid #e8e0e2;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #2d1a2d;
  background: #f8f1f2;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a7a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.search-select:hover {
  border-color: #e15b40;
}

.search-select:focus {
  outline: none;
  border-color: #e15b40;
  box-shadow: 0 0 0 4px rgba(225, 91, 64, 0.10);
}

/* Price Range */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-input-wrapper {
  position: relative;
  flex: 1;
}

.currency {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: #8a7a8a;
}

.price-input {
  width: 100%;
  padding: 0.7rem 0.7rem 0.7rem 2.8rem;
  border: 2px solid #e8e0e2;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #2d1a2d;
  background: #f8f1f2;
  transition: all 0.3s ease;
}

.price-input:hover {
  border-color: #e15b40;
}

.price-input:focus {
  outline: none;
  border-color: #e15b40;
  box-shadow: 0 0 0 4px rgba(225, 91, 64, 0.10);
}

.price-input::placeholder {
  color: #b0a0b0;
}

.price-separator {
  color: #8a7a8a;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Search Button */
.search-action {
  justify-content: flex-end;
}

.search-btn {
  padding: 0.75rem 2rem;
  background: #e15b40;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  justify-content: center;
}

.search-btn:hover {
  background: #c34e59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 91, 64, 0.30);
}

.search-btn:active {
  transform: translateY(0);
}

/* Quick Area Chips */
.quick-areas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid #e8e0e2;
}

.quick-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a7a8a;
  margin-right: 0.3rem;
}

.area-chip {
  padding: 0.3rem 1rem;
  border: 2px solid #e8e0e2;
  background: transparent;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5a4a5a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.area-chip:hover {
  border-color: #e15b40;
  color: #754174;
  background: rgba(225, 91, 64, 0.05);
}

.area-chip.active {
  border-color: #e15b40;
  background: #e15b40;
  color: #fff;
}

.area-chip.reset-chip {
  border-color: #e8e0e2;
  color: #8a7a8a;
}

.area-chip.reset-chip:hover {
  border-color: #c34e59;
  color: #c34e59;
  background: rgba(195, 78, 89, 0.05);
}

/* Search Results Count */
.search-results-count {
  text-align: center;
  font-size: 0.95rem;
  color: #8a7a8a;
  padding-top: 0.5rem;
}

.search-results-count span {
  font-weight: 700;
  color: #754174;
  font-size: 1.1rem;
}

/* ===== HAMBURGER MENU ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  transition: all 0.3s ease;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #754174;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when open */
.nav-toggle.open .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 8px 20px rgba(117, 65, 116, 0.10);
    border-top: 1px solid #f1baa6;
  }
  
  .nav.open {
    max-height: 500px;
    padding: 1.5rem 0;
  }
  
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 0 1.5rem;
  }
  
  .nav a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
  
  .header-grid {
    position: relative;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Show CTA in mobile nav */
  .nav .header-cta-mobile {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
  }
}
/* Footer Logo */
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-row img {
  height: 45px;
  width: auto;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand .brand-sub {
  background: rgba(255, 255, 255, 0.10);
  color: #f1baa6;
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #f1baa6;
  font-style: italic;
  margin-top: 0.2rem;
}

.footer-brand .description {
  color: #b885a4;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}