/* ============================================================
   LAKSHYA ESTATE MANAGEMENT (LEM) — "The Property Solutions"
   Palette derived directly from the brand logo:
   crimson red + indigo navy + sky-blue roof accent + black/white
   ============================================================ */

:root {
  --red:        #C8202E;
  --red-dark:   #A0121F;
  --navy:       #2B2A6E;
  --navy-dark:  #201F52;
  --sky:        #47B5E6;
  --sky-dark:   #2E96C6;
  --ink:        #1A1A1A;
  --ink-soft:   #5B5F66;
  --bg:         #FFFFFF;
  --bg-alt:     #F5F7FA;
  --line:       #E4E7EC;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;

}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
}
a{
  text-decoration: none;
}
.text-red { color: var(--red) !important; }
.text-navy { color: var(--navy) !important; }
.text-sky { color: var(--sky) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-alt { background-color: var(--bg-alt) !important; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--sky);
  display: inline-block;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn-red {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.7rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.btn-red:hover { background-color: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: 4px;
  padding: 0.68rem 1.7rem;
  background: transparent;
}
.btn-outline-navy:hover { background-color: var(--navy); color: #fff; }

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover { background-color: #1EBE5A; color: #fff; }

/* ---------- Navbar ---------- */
.navbar-lem {
  background-color: #fff;
  border-bottom: 1px solid var(--line);
}
.navbar-lem .logo-mark { height: 82px; width: auto; }
.navbar-lem .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0 0.4rem;
}
.navbar-lem .nav-link:hover,
.navbar-lem .nav-link.active { color: var(--red); }
.topbar {
  background-color: #4949b7;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--sky); }
.topbar .sep { opacity: 0.4; margin: 0 0.7rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 60%);
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 6.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(180deg, rgba(71,181,230,0.18), rgba(200,32,46,0.10));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--sky); }
.hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 480px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.08);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-card {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  border-left: 4px solid var(--red);
}
.hero-visual-card .price { font-family: var(--font-mono); font-weight: 700; color: var(--navy); }

/* ---------- Search panel ---------- */
.search-panel {
  background: #fff;
  border-radius: 6px;
  padding: 1.4rem;
  margin-top: -3.6rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.25);
}
.search-panel label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.search-panel .form-select,
.search-panel .form-control {
  border-radius: 4px;
  border: 1px solid var(--line);
}
.search-panel .form-select:focus,
.search-panel .form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(71,181,230,0.15);
}

/* ---------- Section basics ---------- */
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
section { padding: 5rem 0; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--red); color: #fff; }
.stats-band .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }
.stats-band .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }

/* ---------- Property type cards (Industrial / Commercial / Residential / Agricultural) ---------- */
.ptype-card {
  background: #fff;
/*  border: 1px solid var(--line);*/
  border-top: 3px solid var(--sky);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0px 3px 8px 0px #d2eefd;
}
.ptype-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(43,42,110,0.25);
  border-top-color: var(--red);
}
.ptype-card .icon-wrap {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: #4eb8e7;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}
.ptype-card h4 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.ptype-card ul { padding-left: 0rem; margin-bottom: 0; font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }
.ptype-card ul li { margin-bottom: 0.3rem; list-style:none; }

/* ---------- Services ---------- */
.service-card {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.18); }
.service-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin: 0 auto 1.1rem;
  font-size: 1.5rem;
}
.service-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Why choose us ---------- */
.why-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; }
.why-item .num-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c8202e;
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loc i {
    color: #00a2fb;
}
.meta span i {
    color: #2b98d4;
}
.why-item h5 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.why-item p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Listing filters + cards ---------- */
.filter-pills .btn {
  border-radius: 20px;
/*  border: 1px solid var(--line);*/
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
  margin: 0 0.35rem 0.6rem 0;
  background: transparent;
  box-shadow: 0px 3px 8px 0px #d2eefd;
}
.filter-pills .btn.active, .filter-pills .btn:hover {
  background: #47b5e6;
  border-color: #47b5e6;
  color: #fff;
}

.property-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
/*  border: 1px solid var(--line);*/
  height: 100%;
  height: auto!important;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0px 2px 17px 2px #e9e9e9;
}
.property-card:hover { box-shadow: 0 24px 44px -20px rgba(0,0,0,0.2); transform: translateY(-4px); }
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.property-card .img-wrap { position: relative; height: 220px; overflow: hidden; }
.property-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
 }
 .property-card:hover .img-wrap img {
    transform: scale(1.1);
}
.property-card .tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
}
.property-card .body { padding: 1.3rem; }
.property-card .price { font-family: var(--font-mono); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.property-card h5 { font-size: 1.05rem; margin: 0.4rem 0 0.2rem; }
.property-card .loc { color: var(--ink-soft); font-size: 0.85rem; }
.property-card .meta { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 0.8rem; display: flex; gap: 1.1rem; font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Areas served ---------- */
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.5rem 1.1rem;
  margin: 0 0.4rem 0.6rem 0;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}
.area-chip i { color: var(--red); }

/* ---------- Team ---------- */
.team-card {
    text-align: center;
    background: #fff;
    /* border: 1px solid var(--line); */
    border-radius: 6px;
    padding: 0;
    height: 100%;
    box-shadow: 0px 5px 17px 2px #cccccc94;
}
.team-card .photo {
/*  width: 130px; height: 130px;*/
/*  border-radius: 50%;*/
  overflow: hidden;
  margin: 0 auto 0rem;
  border: 3px solid var(--bg-alt);
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { margin-bottom: 0.15rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); }
.team-card p.bio { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.6rem; margin-bottom: 0; }

/* ---------- Testimonials (Google review style) ---------- */
.review-summary {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 1.2rem 1.6rem; margin-bottom: 2.5rem;
}
.review-summary .score { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); }
.review-summary .stars { color: #F5A623; letter-spacing: 2px; }
.testimonial-card {
  background: #fff;
/*  border: 1px solid var(--line);*/
  border-radius: 6px;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0px 4px 29px -4px #e9e9e9;
}
.testimonial-card .stars { color: #F5A623; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.7rem; }
.testimonial-card p { color: var(--ink-soft); font-size: 0.94rem; }
.testimonial-card .who { font-weight: 600; margin-top: 1rem; margin-bottom: 0; font-size: 0.92rem; }
.testimonial-card .who span { font-weight: 400; color: var(--ink-soft); font-size: 0.8rem; display: block; }

/* ---------- Blog ---------- */
.blog-card { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: #fff; height: 100%; }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card .body { padding: 1.3rem; }
.blog-card .date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h5 { font-size: 1.05rem; margin: 0.5rem 0; }
.blog-card a.read-more { color: var(--navy); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.blog-card a.read-more:hover { color: var(--red); }

/* ---------- Contact ---------- */
.contact-form .form-control, .contact-form .form-select {
  border-radius: 4px;
  border: none;
  padding: 0.7rem 0.9rem;
  box-shadow: 0px 3px 8px 0px #d2eefd;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(71,181,230,0.15);
}
.contact-info-card {
  background: #2e2e7a;
  color: #fff;
  border-radius: 6px;
  padding: 2.8rem;
}
.contact-info-card .item { display: flex; gap: 0.9rem; margin-bottom: 1.4rem; }
.contact-info-card .item i { color: #fff; font-size: 1.2rem; margin-top: 0.15rem; }
.contact-info-card .item strong { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 0.2rem; }
.map-embed { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 450px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer { background: #2e2e7a; color: rgba(255,255,255,0.7); padding: 3.5rem 0 1.5rem; }
footer .footer-logo { height: 90px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer h6 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.1rem; }
footer a { color: #fff; text-decoration: none; font-size: 0.92rem; }
footer a:hover { color: var(--sky); }
footer .social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; margin-right: 0.5rem; }
footer .social a:hover { background: var(--red); border-color: var(--red); }
footer hr { border-color: rgba(255,255,255,0.12); }

/* ---------- WhatsApp float ---------- */
#waFloat {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 54px; height: 54px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.4);
  z-index: 1000;
  text-decoration: none;
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  border: none;
}
#backToTop.show { opacity: 1; visibility: visible; }

/* Main Hero Slider Styling */
  .carousel-item {
      height: 75vh;
      min-height: 450px;
      background-color: #000;
  }
  .carousel-item img {
      object-fit: cover;
      opacity: 0.55;
      height: 100%;
      width: 100%;
  }
  .carousel-caption {
      bottom: 25%;
      z-index: 10;
      text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
  }

.small, small {
    font-size: 16px;
    text-align: justify;
    width: 90%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card, .property-card, .ptype-card, #backToTop { transition: none; }
}

@media (max-width: 991.98px) {
  .search-panel { margin-top: 1.5rem; }
  section { padding: 3.5rem 0; }
  .hero::before { display: none; }
}

@media (max-width: 576px) {
.carousel-caption.text-start.container.luxury {
    left: 5%;
}

.carousel-caption.text-start.container.luxury h1{
    font-size: 30px;
}
.carousel-caption.text-start.container.luxury p{
    font-size: 15px;
}

}
