/* =========================================================
   THE PREMIUM HOMES LTD. — Custom Stylesheet
   Fonts: Fraunces (display/serif) + Manrope (body/sans)
   ========================================================= */

:root{
  --forest-900: #0b2a1f;
  --forest-800: #0f3c2b;
  --forest-700: #145c3a;
  --forest-600: #1a7a4a;
  --gold-500: #c99a4d;
  --cream-100: #f8f6f0;
  --cream-50: #fffdf9;
  --ink-900: #0d1210;
  --ink-700: #40473f;
  --ink-500: #6c766c;
  --line: #e3ddce;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(11, 42, 31, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

*{ box-sizing: border-box; }

body{
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
}

h1, h2, h3, h4, h5{
  font-family: var(--font-display);
  color: var(--forest-900);
  margin: 0;
}

a{ text-decoration: none; }

img{ max-width: 100%; display: block; }

.container{ max-width: 1220px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
}

.site-header .navbar{ padding: .85rem 0; }

.navbar-brand{
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-900);
  letter-spacing: .01em;
}

.navbar-brand i{
  font-size: 1.6rem;
  color: var(--forest-600);
}

.navbar-brand small{
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold-500);
}

.navbar-nav .nav-link{
  color: var(--ink-700);
  font-weight: 600;
  font-size: .93rem;
  padding: .5rem 1rem !important;
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{
  color: var(--forest-700);
}

.navbar-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .15rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.header-actions{ margin-left: 1rem; }

.btn-predictor{
  background: var(--forest-700);
  color: #fff;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  padding: .5rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.btn-predictor:hover{ background: var(--forest-800); color:#fff; }

.btn-login{
  border: 1.5px solid var(--ink-900);
  color: var(--ink-900);
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  padding: .48rem 1.3rem;
}
.btn-login:hover{ background: var(--ink-900); color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position: relative; background: var(--ink-900); }

.hero-slide{
  position: relative;
  min-height: 640px;
  background: linear-gradient(120deg, #0c1f16 0%, #123526 55%, #1c4a34 100%),
              url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=1600') center/cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
}

.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,10,.55) 0%, rgba(6,15,10,.25) 45%, rgba(6,15,10,.85) 100%);
}

.hero-content{
  position: relative;
  max-width: 620px;
  padding: 5rem 0 6rem;
  color: #fff;
}

.hero-tag{
  display: inline-block;
  padding: .35rem .9rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-500);
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,.06);
}

.hero-content h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.hero-content p{
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns{ display: flex; gap: .9rem; flex-wrap: wrap; }

.btn-premium{
  background: var(--gold-500);
  color: var(--ink-900);
  font-weight: 700;
  padding: .8rem 1.6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-premium:hover{ background: #b3843a; color: var(--ink-900); }

.btn-outline-premium{
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 700;
  padding: .8rem 1.6rem;
  border-radius: 8px;
}
.btn-outline-premium:hover{ background: #fff; color: var(--ink-900); }

.hero-dots{
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.hero-dots span{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.hero-dots span.active{ background: var(--gold-500); width: 22px; border-radius: 5px; }

/* Countdown */
.countdown-bar{
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  position: relative;
  z-index: 3;
}

.countdown-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-label{
  color: var(--gold-500);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.countdown-timer{ display: flex; align-items: center; gap: .6rem; }

.cd-unit{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .4rem .8rem;
  min-width: 58px;
}

.cd-unit span{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cd-unit small{
  font-size: .62rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

.cd-sep{ color: rgba(255,255,255,.4); font-weight: 700; font-size: 1.1rem; }

/* =========================================================
   DREAM HOME / GALLERY
   ========================================================= */
.dream-home{
  background: var(--forest-800);
  padding: 4.5rem 0 3.5rem;
}

.dream-intro{ max-width: 700px; margin: 0 auto 2.6rem; }

.dream-intro h2{
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dream-intro p{
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}

.gallery-scroll{
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0 .5rem;
}
.gallery-scroll::-webkit-scrollbar{ display: none; }

.gallery-track{
  display: flex;
  gap: 1.1rem;
  padding: 0 1.5rem;
  width: max-content;
}

.gallery-item{
  position: relative;
  width: 230px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img{ transform: scale(1.07); }

.gallery-item::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
}

.gallery-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  z-index: 2;
  color: #fff;
}

.gallery-caption h6{
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.gallery-caption span{
  font-size: .74rem;
  color: rgba(255,255,255,.7);
}

/* =========================================================
   SECTION HEADINGS (shared)
   ========================================================= */
.section-heading{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2{
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  position: relative;
  padding-bottom: .7rem;
}

.section-heading h2::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 3px;
  background: var(--gold-500);
  border-radius: 3px;
}

.section-sub{
  color: var(--ink-500);
  font-size: .93rem;
  max-width: 480px;
  margin-top: .4rem;
}

.slider-arrows{ display: flex; gap: .6rem; }

.arrow-btn{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--forest-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.arrow-btn:hover{ background: var(--forest-800); color: #fff; border-color: var(--forest-800); }

.btn-see-all{
  border: 1.5px solid var(--ink-900);
  color: var(--ink-900);
  border-radius: 30px;
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1.3rem;
}
.btn-see-all:hover{ background: var(--ink-900); color: #fff; }

/* =========================================================
   COMMUNITY / PROJECTS
   ========================================================= */
.community-projects{ padding: 4.5rem 0; background: var(--cream-100); }

.community-filters{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.filter-chip{
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-700);
  font-weight: 600;
  font-size: .85rem;
  padding: .55rem 1.2rem;
  border-radius: 30px;
  transition: all .2s;
}

.filter-chip.active,
.filter-chip:hover{
  background: var(--forest-700);
  color: #fff;
  border-color: var(--forest-700);
}

.property-card{
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}

.property-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.property-thumb{
  position: relative;
  height: 190px;
  overflow: hidden;
}

.property-thumb img{ width: 100%; height: 100%; object-fit: cover; }

.badge-sale{
  position: absolute;
  top: .8rem; right: .8rem;
  background: var(--forest-600);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 20px;
  letter-spacing: .03em;
}

.property-body{ padding: 1.1rem 1.2rem 1.3rem; }

.property-loc{
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.property-body h5{
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.property-body .prop-type{
  font-size: .82rem;
  color: var(--ink-500);
  margin-bottom: .8rem;
}

.property-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-700);
  font-weight: 600;
}

.property-footer i{ color: var(--forest-600); }

/* =========================================================
   FIND WHERE YOU WANT TO LIVE — banner
   ========================================================= */
.live-banner{
  background: var(--forest-900);
  padding: 3.2rem 0;
}

.live-banner h2{
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: .8rem;
}

.live-banner p{
  color: rgba(255,255,255,.68);
  max-width: 620px;
  margin: 0 auto;
  font-size: .96rem;
}

/* =========================================================
   FEATURED PROPERTIES
   ========================================================= */
.featured-properties{ padding: 4.5rem 0; }

.feat-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}

.feat-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.feat-card:hover img{ transform: scale(1.06); }

.feat-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%);
}

.feat-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  color: #fff;
  z-index: 2;
}

.feat-caption h5{ font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: .2rem; }
.feat-caption span{ font-size: .78rem; color: rgba(255,255,255,.7); }

/* =========================================================
   CLIENT REVIEWS
   ========================================================= */
.client-reviews{ padding: 4.5rem 0; background: var(--cream-100); }

.review-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  background: #12281f;
}

.review-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
}

.review-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,10,.1) 30%, rgba(6,15,10,.92) 100%);
}

.play-btn{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 2;
}

.review-info{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  color: #fff;
  z-index: 2;
}

.review-info p{
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.review-person{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-person strong{ display: block; font-size: .85rem; }
.review-person span{ font-size: .7rem; color: rgba(255,255,255,.6); }

/* Stats row */
.stats-row{ margin-top: 3rem; }

.stat-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--line);
}

.stat-card i{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .8rem;
  color: #fff;
}

.stat-blue i{ background: #2f6fed; }
.stat-orange i{ background: #f0a33c; }
.stat-green i{ background: var(--forest-600); }
.stat-purple i{ background: #9553e0; }

.stat-card h3{
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: .1rem;
}

.stat-card p{
  font-size: .8rem;
  color: var(--ink-500);
  margin: 0;
}

/* =========================================================
   PROGRESS SECTION
   ========================================================= */
.progress-section{ padding: 4.5rem 0; }

.progress-card{
  height: 260px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-icon{
  position: absolute;
  font-size: 3rem;
  color: rgba(255,255,255,.9);
}

.progress-label{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.3rem;
  text-align: center;
  color: #fff;
}

.progress-label h4{
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.progress-label span{ font-size: .82rem; color: rgba(255,255,255,.75); }

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-section{ padding: 4.5rem 0; background: var(--cream-100); }

.blog-card{
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
}

.blog-thumb{ position: relative; height: 170px; overflow: hidden; }
.blog-thumb img{ width: 100%; height: 100%; object-fit: cover; }

.blog-read-badge{
  position: absolute;
  top: .7rem; left: .7rem;
  background: var(--forest-700);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: 20px;
}

.blog-body{ padding: 1.1rem 1.2rem 1.3rem; }

.blog-body h5{
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: .5rem;
}

.blog-body p{
  font-size: .82rem;
  color: var(--ink-500);
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--ink-500);
  border-top: 1px solid var(--line);
  padding-top: .7rem;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip{ padding: 0 0 4.5rem; }

.cta-box{
  background: linear-gradient(120deg, var(--forest-700), var(--forest-900));
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-box h2{ color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: .7rem; }
.cta-box p{ color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 1.6rem; }

.btn-cta{
  background: #fff;
  color: var(--forest-800);
  font-weight: 700;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  display: inline-block;
}
.btn-cta:hover{ background: var(--gold-500); color: var(--ink-900); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--forest-900);
  color: rgba(255,255,255,.78);
  padding-top: 4rem;
  position: relative;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand i{ font-size: 1.6rem; color: var(--gold-500); }

.footer-top p{ font-size: .87rem; color: rgba(255,255,255,.62); margin-bottom: 1.2rem; }

.social-icons{ display: flex; gap: .6rem; }
.social-icons a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
}
.social-icons a:hover{ background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); }

.site-footer h5{
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.site-footer ul{ list-style: none; padding: 0; margin: 0; }
.site-footer ul li{ margin-bottom: .65rem; }
.site-footer ul li a{
  color: rgba(255,255,255,.65);
  font-size: .87rem;
  transition: color .2s;
}
.site-footer ul li a:hover{ color: var(--gold-500); }

.contact-list li{
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  align-items: flex-start;
}
.contact-list i{ color: var(--gold-500); margin-top: .2rem; }

.newsletter-form{ display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter-form input{
  flex: 1;
  padding: .65rem .9rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .85rem;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.5); }
.newsletter-form button{
  background: var(--forest-600);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .65rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}
.newsletter-form button:hover{ background: var(--gold-500); color: var(--ink-900); }

.footer-app{
  margin-top: 3rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-app h5{ margin-bottom: .3rem; }
.footer-app p{ font-size: .85rem; color: rgba(255,255,255,.6); margin: 0; }

.app-buttons{ display: flex; gap: .7rem; justify-content: flex-end; flex-wrap: wrap; }
.btn-store{
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 8px;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-store:hover{ background: rgba(255,255,255,.1); color: #fff; }

.footer-bottom {
    text-align: center;
    padding: 1.4rem 0 1.4rem;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 1.4rem;
}

@media (max-width: 767px){
  .app-buttons{ justify-content: flex-start; margin-top: 1rem; }
}

/* Floating action buttons */
.floating-icons{
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 999;
}
.fab{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.fab-msg{ background: #ef4444; }
.fab-mail{ background: #f59e0b; }
.fab-phone{ background: #2563eb; }
.fab-whatsapp{ background: #22c55e; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px){
  .navbar-nav{ margin: 1rem 0; }
  .header-actions{ margin-left: 0; flex-wrap: wrap; }
  .hero-content{ padding: 3.5rem 0 4rem; }
  .gallery-item{ width: 190px; height: 250px; }
}

@media (max-width: 575px){
  .countdown-inner{ flex-direction: column; gap: .7rem; }
  .cd-unit{ min-width: 50px; padding: .35rem .6rem; }
  .section-heading{ align-items: flex-start; }
}







/* =========================================================
   PROJECTS HERO / TITLE BAND
   ========================================================= */
.projects-hero{
  padding: 4rem 0 3rem;
  background: var(--cream-50);
}

.eyebrow{
  display: inline-block;
  color: var(--forest-600);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.projects-hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--ink-900);
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 1.1rem;
  position: relative;
  padding-bottom: 1rem;
}

.projects-hero h1::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 3px;
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */
.projects-main{ padding: 0 0 4.5rem; }

.results-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.results-count{
  color: var(--ink-500);
  font-size: .92rem;
  margin: 0;
}
.results-count strong{ color: var(--ink-900); }

.btn-advanced-search{
  background: var(--forest-700);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
}
.btn-advanced-search:hover{ background: var(--forest-800); color: #fff; }

/* =========================================================
   SIDEBAR FILTER PANEL
   ========================================================= */
.filter-panel{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  position: sticky;
  top: 1.5rem;
}

.filter-panel-title{
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 1.1rem;
}

.filter-group{
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.filter-group-flat{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.filter-group-toggle{
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding: 0 0 .8rem;
}

.filter-group-toggle i{
  transition: transform .2s;
  color: var(--ink-500);
  font-size: .85rem;
}
.filter-group-toggle.collapsed i{ transform: rotate(180deg); }

.filter-group-body{
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.filter-group-body.collapsed{ display: none; }

.filter-check{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ink-700);
  cursor: pointer;
}

.filter-check input[type="checkbox"]{
  width: 17px;
  height: 17px;
  accent-color: var(--forest-600);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-check span{ display: flex; align-items: center; gap: .4rem; }

/* =========================================================
   PROJECT CARDS (grid)
   ========================================================= */
.property-card{
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}

.property-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.property-thumb{
  position: relative;
  height: 190px;
  overflow: hidden;
}

.property-thumb img{ width: 100%; height: 100%; object-fit: cover; }

.badge-status{
  position: absolute;
  top: .8rem; right: .8rem;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .32rem .75rem;
  border-radius: 20px;
  letter-spacing: .03em;
}
.badge-onsale{ background: var(--forest-600); }
.badge-soldout{ background: #d3413c; }
.badge-underconstruction{ background: #e0912c; display: inline-flex; align-items: center; gap: .3rem; }

.property-body{ padding: 1.1rem 1.2rem 1.3rem; }

.property-loc{
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--forest-600);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.property-body h5{
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: .3rem;
}

.property-body .prop-type{
  font-size: .82rem;
  color: var(--ink-500);
  margin-bottom: .8rem;
}

.property-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-700);
  font-weight: 600;
}

.property-footer i{ color: var(--forest-600); }

.no-results{
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-500);
}
.no-results i{ font-size: 2.4rem; color: var(--line); margin-bottom: 1rem; display: block; }

/* =========================================================
   PAGINATION
   ========================================================= */
.projects-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.page-btn{
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-700);
  font-weight: 600;
  font-size: .85rem;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s;
}
.page-btn:hover:not(:disabled){ background: var(--forest-700); color: #fff; border-color: var(--forest-700); }
.page-btn:disabled{ opacity: .45; cursor: not-allowed; }

.page-numbers{ display: flex; gap: .4rem; }

.page-num{
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-700);
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.page-num:hover{ border-color: var(--forest-600); color: var(--forest-700); }
.page-num.active{ background: var(--forest-700); border-color: var(--forest-700); color: #fff; }

/* =========================================================
   ADVANCED SEARCH MODAL
   ========================================================= */
.adv-search-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 15, .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 2000;
}
.adv-search-backdrop.open{ display: flex; }

.adv-search-modal{
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.adv-search-header{
  background: linear-gradient(120deg, var(--forest-600), var(--forest-800));
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.adv-search-header h5{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .3rem;
}

.adv-search-header p{
  font-size: .85rem;
  color: rgba(255,255,255,.82);
  margin: 0;
}

.adv-close-btn{
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.adv-close-btn:hover{ background: rgba(255,255,255,.28); }

.adv-search-body{
  padding: 1.4rem 1.6rem;
  overflow-y: auto;
  flex: 1;
}

.adv-search-input-wrap{
  position: relative;
  margin-bottom: 1.6rem;
}
.adv-search-input-wrap i{
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
}
.adv-search-input-wrap input{
  width: 100%;
  padding: .8rem 1rem .8rem 2.6rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .9rem;
  background: var(--cream-100);
}
.adv-search-input-wrap input:focus{
  outline: none;
  border-color: var(--forest-600);
  background: #fff;
}

.adv-search-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}

.adv-field{ margin-bottom: 1.6rem; }

.adv-field h6{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-900);
  margin-bottom: .8rem;
}
.adv-field h6 i{ color: var(--forest-600); }

.adv-chip-group{
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.adv-chip-group-scroll{
  max-height: 180px;
  overflow-y: auto;
  padding-right: .3rem;
}

.adv-chip{
  text-align: left;
  background: var(--cream-100);
  border: 1.5px solid var(--line);
  color: var(--ink-700);
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem .8rem;
  border-radius: 8px;
  transition: all .18s;
}
.adv-chip:hover{ border-color: var(--forest-600); }
.adv-chip.active{
  background: var(--forest-700);
  border-color: var(--forest-700);
  color: #fff;
}

.adv-search-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--line);
  background: var(--cream-100);
  flex-wrap: wrap;
}

.adv-search-footer span{
  font-size: .85rem;
  color: var(--ink-500);
  font-weight: 600;
}

.adv-footer-btns{ display: flex; gap: .7rem; }

.btn-adv-close{
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink-700);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.3rem;
  border-radius: 8px;
}
.btn-adv-close:hover{ background: var(--cream-100); }

.btn-adv-apply{
  background: var(--forest-600);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.5rem;
  border-radius: 8px;
}
.btn-adv-apply:hover{ background: var(--forest-800); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px){
  .filter-panel{ position: static; margin-bottom: 1.5rem; }
  .adv-search-columns{ grid-template-columns: 1fr; }
}

@media (max-width: 575px){
  .results-bar{ flex-direction: column; align-items: flex-start; }
  .adv-search-footer{ flex-direction: column; align-items: stretch; }
  .adv-footer-btns{ justify-content: stretch; }
  .adv-footer-btns button{ flex: 1; }
}







/* =========================================================
   TEAM PHOTO BANNER
   ========================================================= */
.about-banner-img{
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.about-banner-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.about-stats{ padding: 3rem 0 3.5rem; }

.stat-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-card i{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: .9rem;
  color: #fff;
}

.stat-blue i{ background: #2f6fed; }
.stat-orange i{ background: #f0a33c; }
.stat-green i{ background: var(--forest-600); }
.stat-purple i{ background: #9553e0; }

.stat-card h3{
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 .1rem;
}

.stat-card p{
  font-size: .82rem;
  color: var(--ink-500);
  margin: 0;
}

/* =========================================================
   INTRO / WHO WE ARE
   ========================================================= */
.about-intro{
  background: var(--mint-50);
  padding: 4rem 0;
}

.about-intro h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--ink-900);
  margin-bottom: 1rem;
}

.intro-lead{
  color: var(--ink-700);
  font-size: .98rem;
  margin-bottom: 1.6rem;
  max-width: 540px;
}

.intro-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.intro-checklist li{
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--ink-700);
  font-weight: 500;
}

.intro-checklist i{
  color: var(--forest-600);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.intro-img{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.intro-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   CORE VALUES
   ========================================================= */
.core-values{ padding: 4.5rem 0; background: var(--cream-50); }

.section-heading-center{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.6rem;
}

.section-heading-center h2{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest-700);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: .7rem;
}

.section-heading-center p{
  color: var(--ink-500);
  font-size: .95rem;
  margin: 0;
}

.value-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.value-icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--forest-700);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.value-card h5{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink-900);
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

.value-card p{
  font-size: .87rem;
  color: var(--ink-500);
  margin: 0;
}

/* =========================================================
   OUR JOURNEY (TIMELINE)
   ========================================================= */
.journey-section{
  background: var(--forest-900);
  padding: 4.5rem 0;
}

.journey-section h2{
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 3rem;
}

.timeline{
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.timeline-item{
  position: relative;
  padding-left: 2.4rem;
  padding-bottom: 2.3rem;
  border-left: 2px solid rgba(255,255,255,.18);
}
.timeline-item:last-child{ border-left-color: transparent; padding-bottom: 0; }

.timeline-dot{
  position: absolute;
  left: -8px;
  top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--forest-900);
}

.timeline-year{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold-500);
  margin-bottom: .3rem;
}

.timeline-item h5{
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: .3rem;
}

.timeline-item p{
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin: 0;
}

/* =========================================================
   PARTNERS / SUPPLIERS
   ========================================================= */
.partners-section{ padding: 4.5rem 0; background: var(--cream-50); }

.partners-section h2{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 2.6rem;
}

.partners-grid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.partner-logo{
  width: 130px;
  height: 78px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--ink-700);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.partner-logo:hover{ box-shadow: var(--shadow-soft); transform: translateY(-2px); }

/* =========================================================
   CTA STRIP
   ========================================================= */
.about-cta-strip{ padding: 0 0 4.5rem; }

.about-cta-box{
  background: linear-gradient(120deg, var(--forest-700), var(--forest-900));
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
}

.about-cta-box h2{
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: .7rem;
}

.about-cta-box p{
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 1.6rem;
  font-size: .95rem;
}

.btn-about-cta{
  background: var(--gold-500);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: .04em;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  display: inline-block;
  font-size: .88rem;
}
.btn-about-cta:hover{ background: #b3843a; color: var(--ink-900); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 767px){
  .about-banner-img{ height: 280px; }
  .timeline-item{ padding-left: 1.8rem; }
}






/* ===== Section heading ===== */
.team-section{
  padding: 4.5rem 0 5rem;
  background: radial-gradient(ellipse at top, #eef7f1 0%, var(--cream-50) 60%);
}

.team-heading{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.2rem;
}

.team-eyebrow{
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: .8rem;
}

.team-heading h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  color: var(--ink-900);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.team-heading h1 span{ color: var(--forest-600); }

.team-heading p{
  color: var(--ink-500);
  font-size: .98rem;
  margin: 0 auto;
  position: relative;
  padding-bottom: 1.2rem;
}

.team-heading p::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 3px;
}

/* ===== Team grid ===== */
.team-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease;
}
.team-card:hover{ transform: translateY(-4px); }

.team-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.team-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(6,15,10,.92) 100%);
}

.team-info{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.15rem;
  z-index: 2;
  color: #fff;
}

.team-info h5{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0 0 .25rem;
  line-height: 1.3;
  color: #fff;
}

.team-info span{
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-500);
}

@media (max-width: 767px){
  .team-card{ height: 300px; }
}










/* ============================================================
   BLOG PAGE – MAIN STYLES
   ============================================================ */

/* ===== HERO ===== */
.blog-hero {
  background: linear-gradient(135deg, #0b2a1f 0%, #145c3a 60%, #1a7a4a 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-hero__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.6rem;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.blog-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SECTION ===== */
.blog-section {
  padding: 1rem 0 5rem;
}

/* ===== LAYOUT ===== */
.blog-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 42, 31, 0.18);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.read-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 42, 31, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}

.read-badge i {
  font-size: 0.75rem;
}

.blog-card__body {
  padding: 1.2rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--ink-500);
}

.blog-meta li {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-meta i {
  font-size: 0.8rem;
}

.blog-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.blog-card__title a {
  color: var(--ink-900);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: var(--forest-600);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin: 0 0 1rem;
  line-height: 1.55;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: auto;
}

.author {
  font-size: 0.78rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
}

.read-more:hover {
  gap: 0.5rem;
  color: var(--forest-700);
}

/* ===== PAGINATION ===== */
.blog-pagination {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--forest-600);
  color: var(--forest-600);
}

.page-btn.is-active {
  background: var(--forest-600);
  border-color: var(--forest-600);
  color: #fff;
}

.page-btn--next {
  gap: 0.4rem;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.widget {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.widget__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-700);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

/* Search */
.search-form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.search-form:focus-within {
  border-color: var(--forest-600);
}

.search-form input {
  flex: 1;
  border: none;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  background: transparent;
}

.search-form button {
  background: var(--forest-600);
  color: #fff;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.search-form button:hover {
  background: var(--forest-700);
}

/* Categories */
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-900);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
  transition: color 0.2s;
}

.cat-list a:hover {
  color: var(--forest-600);
}

.cat-list .count {
  background: #eef7f1;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* Recent posts */
.recent-post {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.recent-post h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  line-height: 1.35;
}

.recent-post h4 a {
  color: var(--ink-900);
  text-decoration: none;
  transition: color 0.2s;
}

.recent-post h4 a:hover {
  color: var(--forest-600);
}

.recent-post time {
  font-size: 0.72rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud a {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: #f4f9f5;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-900);
  text-decoration: none;
  transition: all 0.2s;
}

.tag-cloud a:hover {
  background: var(--forest-600);
  border-color: var(--forest-600);
  color: #fff;
}

/* CTA Widget */
.widget--cta {
  background: linear-gradient(145deg, var(--forest-900), var(--forest-700));
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
}

.widget--cta .cta-icon {
  font-size: 2.2rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 0.6rem;
}

.widget--cta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
}

.widget--cta p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0 0 1.2rem;
  line-height: 1.5;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-500);
  color: var(--forest-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.cta-btn:hover {
  background: #dbb05e;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  .blog-hero {
    padding: 2.5rem 0 2rem;
    border-radius: 0 0 24px 24px;
  }
  .blog-hero h1 {
    font-size: 1.9rem;
  }
  .blog-hero p {
    font-size: 0.92rem;
  }
  .widget {
    padding: 1.2rem 1rem;
  }
  .blog-card__body {
    padding: 1rem;
  }
}









/* ============================================================
   BLOG DETAILS PAGE – MAIN STYLES
   ============================================================ */


/* ===== LAYOUT ===== */
.blog-details-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin: 30px auto;
}

@media (max-width: 991px) {
  .blog-details-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== LEFT COLUMN: ARTICLE ===== */
.single-post {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Post Header */
.post-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.post-category {
  display: inline-block;
  background: var(--forest-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  color: var(--ink-900);
  margin: 0 0 1.2rem;
}

.post-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.post-meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-meta i {
  font-size: 0.9rem;
}

/* Featured Image */
.post-thumbnail {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Post Content */
.post-content {
  padding: 2rem 2.5rem;
  font-size: 0.95rem;
  color: #333;
}

.post-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.post-content h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-900);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Post Footer / Tags */
.post-footer {
  padding: 0 2.5rem 2rem;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-tags a {
  background: #f0f0f0;
  color: var(--ink-900);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.post-tags a:hover {
  background: var(--forest-600);
  color: #fff;
}

/* ===== RIGHT COLUMN: SIDEBAR ===== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.widget {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.widget__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink-900);
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.widget__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: var(--forest-600);
}

/* Social Networks */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.social-btn i {
  font-size: 1rem;
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.facebook { background: #1877F2; }
.social-btn.youtube { background: #FF0000; }
.social-btn.pinterest { background: #E60023; }
.social-btn.linkedin { background: #0A66C2; }

/* Search Widget */
.search-form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.search-form input {
  flex: 1;
  border: none;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.search-form button {
  background: var(--forest-600);
  color: #fff;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.2s;
}

.search-form button:hover {
  background: var(--forest-700);
}

.recent-btn-wrap {
  text-align: right;
}

.recent-btn {
  display: inline-block;
  background: var(--forest-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.recent-btn:hover {
  background: var(--forest-700);
  color: #fff;
}

/* Recent Posts */
.recent-post {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.recent-post h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  line-height: 1.35;
}

.recent-post h4 a {
  color: var(--ink-900);
  text-decoration: none;
  transition: color 0.2s;
}

.recent-post h4 a:hover {
  color: var(--forest-600);
}

.recent-post time {
  font-size: 0.7rem;
  color: var(--ink-500);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-900);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.tag-cloud a:hover {
  background: var(--forest-600);
  border-color: var(--forest-600);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  body {
    padding: 1.5rem 0;
  }
  .post-header {
    padding: 1.5rem 1rem 0.5rem;
  }
  .post-content {
    padding: 1.5rem 1rem;
  }
  .post-footer {
    padding: 0 1rem 1.5rem;
  }
  .post-meta {
    gap: 0.8rem;
  }
  .widget {
    padding: 1.2rem 1rem;
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}













/* ============================================================
   REVIEWS PAGE – MAIN STYLES
   ============================================================ */

/* ===== HERO ===== */
.reviews-hero {
  text-align: center;
  padding: 4.5rem 0 3rem;
}

.reviews-hero h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 0.8rem;
  color: var(--ink-900);
}

.reviews-hero h1 span {
  color: var(--ink-900);
}

.reviews-hero p {
  font-size: 1rem;
  color: var(--ink-900);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== REVIEWS GRID ===== */
.reviews-section {
  padding: 1rem 0 5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEW CARD ===== */
.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Video Area */
.review-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.review-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.review-card:hover .review-video img {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.review-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  padding-left: 4px; /* Center the play icon visually */
}

.play-btn:hover {
  background: #fff;
  color: var(--dark-bg);
  transform: scale(1.1);
}

.watch-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}

.watch-badge i {
  color: #ff0000;
}

/* Content Area */
.review-content {
  padding: 1.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.2rem;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
  margin: 0 0 1.5rem;
  line-height: 1.6;
  flex: 1;
}

/* Reviewer Info */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: auto;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-details h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.1rem;
  color: #fff;
}

.reviewer-details span {
  display: block;
  font-size: 0.78rem;
  color: var(--teal-light);
  font-weight: 600;
}

.reviewer-details time {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  .reviews-hero {
    padding: 3rem 0 2rem;
  }
  .reviews-hero p {
    font-size: 0.9rem;
  }
  .review-content {
    padding: 1.2rem 1.2rem 1.5rem;
  }
  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}













/* ============================================================
   FAQ PAGE – MAIN STYLES
   ============================================================ */

/* ===== HERO ===== */
.faq-hero {
  background: linear-gradient(135deg, #0b2a1f 0%, #145c3a 60%, #1a7a4a 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.8rem;
  color: #fff;
}

.faq-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FAQ LAYOUT ===== */
.faq-section {
  padding: 3rem 0 5rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== SIDEBAR (Categories) ===== */
.categories-box {
  background-color: var(--forest-900);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.categories-title {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-list a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.category-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.category-list a.active {
  background-color: #fff;
  color: var(--forest-900);
  font-weight: 700;
}

/* ===== MAIN CONTENT (Accordion) ===== */
.faq-main {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.faq-header-icon {
  width: 4px;
  height: 24px;
  background-color: var(--forest-900);
  border-radius: 2px;
  display: inline-block;
}

.faq-header h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--forest-900);
  margin: 0;
}

/* Accordion Items */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--forest-900);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background-color: #fcfcfc;
}

.faq-question .icon {
  font-size: 1.2rem;
  color: var(--forest-900);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  background-color: #fcfcfc;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust based on content */
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.faq-cta {
  margin-top: 3rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-text h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-900);
  margin: 0 0 0.3rem;
}

.cta-text p {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--ink-900);
  color: #fff;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--forest-900);
  border: 2px solid var(--forest-900);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid:hover {
  background: var(--forest-700);
  border-color: var(--forest-700);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .faq-hero {
    padding: 2.5rem 0;
  }
  .faq-hero h1 {
    font-size: 1.8rem;
  }
  .faq-hero p {
    font-size: 0.92rem;
  }
  .faq-main {
    padding: 1.5rem;
  }
  .faq-question {
    padding: 1rem;
    font-size: 0.88rem;
  }
  .faq-answer {
    padding: 0 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
  .faq-cta {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn-outline, .btn-solid {
    width: 100%;
    justify-content: center;
  }
}














/* ============================================================
   CONTACT PAGE – MAIN STYLES
   ============================================================ */

/* ===== HERO ===== */
.contact-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background-color: var(--bg-light);
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e8f5e9;
  color: var(--forest-600);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.8rem;
  color: var(--ink-900);
}

.contact-hero h1 span {
  color: var(--forest-600);
}

.contact-hero p {
  font-size: 1.05rem;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-section {
  padding: 1rem 0 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- LEFT COLUMN: FORM ---------- */
.contact-form-box {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-form-box h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
  color: #272727;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

#contactForm .form-group input, .form-group textarea {
  border: 1px solid #999 !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(37, 37, 37, 0.9);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-900);
  background-color: #ffffff;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(26, 138, 74, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn-ss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background-color: #eee;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #181818 !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.submit-btn-ss:hover {
  background-color: #255f31a1;
  color: var(--forest-700);
}

/* Social Connect Box */
.social-connect-box {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.social-connect-box h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(12, 12, 12, 0.507);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background-color: var(--forest-600);
  transform: translateY(-2px);
}

/* ---------- RIGHT COLUMN: INFO TABS & CARDS ---------- */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: #fff;
  color: var(--ink-500);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--forest-700);
  color: var(--forest-700);
}

.tab-btn.active {
  background-color: var(--forest-700);
  border-color: var(--forest-700);
  color: #fff;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateX(4px);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgb(10 48 18 / 76%);
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.info-details p {
  font-size: 0.88rem;
  color: rgb(30 30 30 / 85%);
  margin: 0;
  line-height: 1.5;
}

/* ===== DEPARTMENTS SECTION ===== */
.departments-section {
  padding: 4rem 0 5rem;
  background-color: #fcfcfc;
  border-top: 1px solid var(--line);
}

.dept-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.dept-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 0.6rem;
}

.dept-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink-900);
  margin: 0 0 0.8rem;
}

.dept-header h2 span {
  color: var(--forest-600);
}

.dept-header p {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin: 0;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .dept-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}

.dept-card {
  background-color: var(--forest-700);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 84, 46, 0.25);
}

.dept-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.dept-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.3;
  color: #fff;
}

.dept-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dept-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.dept-contact li i {
  font-size: 0.95rem;
  color: var(--forest-600);
  background: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  .contact-hero {
    padding: 2.5rem 0 2rem;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  .contact-hero p {
    font-size: 0.92rem;
  }
  .contact-form-box {
    padding: 1.5rem;
  }
  .social-connect-box {
    padding: 1.2rem 1.5rem;
  }
  .info-card {
    padding: 1.2rem;
  }
}











/* ============================================================
   PROJECT DETAILS PAGE – MAIN STYLES
   ============================================================ */

/* ===== TYPOGRAPHY & ELEMENTS ===== */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 0.6rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.light h2, .section-header.light p {
  color: #fff;
}

/* ===== HERO SECTION ===== */
.project-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 79, 50, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(11, 79, 50, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-top {
  margin-bottom: 2rem;
}
.hero-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
}

.hero-location {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-title span {
  color: var(--gold-500);
}

.hero-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.amenity i {
  font-size: 1.5rem;
  color: var(--gold-500);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-item i {
  color: var(--gold-500);
}

.hero-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
.hero-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.hero-address i {
  color: var(--gold-500);
  font-size: 1rem;
}

/* Sticky Inquiry Bar */
.inquiry-bar {
  background-color: var(--forest-900);
  color: #fff;
  padding: 0.8rem 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.inquiry-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.inquiry-text {
  font-weight: 600;
  font-size: 0.95rem;
}
.inquiry-actions {
  display: flex;
  gap: 1rem;
}
.btn-login, .btn-contact {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-login {
  background-color: var(--gold-500);
  color: var(--forest-900);
}
.btn-login:hover {
  background-color: #dbb05e;
  color: var(--forest-900);
}
.btn-contact {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-contact:hover {
  background-color: #fff;
  color: var(--forest-900);
}

/* ===== OVERVIEW SECTION ===== */
.overview-section {
  padding: 5rem 0;
  background-color: var(--bg-cream);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.overview-text p {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.overview-stats {
  display: flex;
  gap: 2rem;
}
.stat-box {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--line);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-900);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-500);
  letter-spacing: 0.05em;
}
.overview-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* ===== SPECIFICATION SECTION ===== */
.specs-section {
  background-color: var(--forest-900);
  padding: 5rem 0;
  color: #fff;
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.specs-text .eyebrow {
  color: var(--gold-500);
}
.specs-text h2 {
  color: #fff;
  margin-bottom: 2rem;
}
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
.specs-list li span:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.specs-list li span:last-child {
  font-weight: 700;
  color: #fff;
}
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-brochure:hover {
  background: #fff;
  color: var(--forest-900);
}
.specs-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-section {
  padding: 5rem 0;
  background-color: var(--white);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.lifestyle-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s;
}
.lifestyle-card:hover {
  transform: translateY(-4px);
}
.lifestyle-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.lifestyle-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 1rem 1rem 0.3rem;
  color: var(--ink-900);
}
.lifestyle-card p {
  font-size: 0.8rem;
  color: var(--ink-500);
  margin: 0 1rem 1rem;
}

/* ===== AVAILABLE UNITS SECTION ===== */
.units-section {
  background-color: var(--forest-900);
  padding: 5rem 0;
  color: #fff;
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.unit-card {
  background-color: var(--forest-800);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, background 0.2s;
}
.unit-card:hover {
  transform: translateY(-4px);
  background-color: var(--forest-700);
}
.unit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.unit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.unit-card li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.unit-card li span {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  width: 80px;
}

/* ===== LOCATION SECTION ===== */
.location-section {
  background-color: var(--forest-900);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.location-text h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.location-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--forest-900);
}
.location-map img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: white;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.contact-text h2 {
  color: #202020;
  margin-bottom: 1rem;
}
.contact-text p {
  font-size: 0.95rem;
  color: #202020;
}
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.4rem;
}
.form-group label i {
  color: var(--forest-600);
  margin-right: 0.3rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-900);
  background-color: #fcfcfc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 3px rgba(26, 138, 74, 0.1);
  background-color: #fff;
}
.form-group textarea {
  resize: vertical;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background-color: var(--forest-700);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background-color: var(--forest-900);
}
.form-disclaimer {
  font-size: 0.7rem;
  color: var(--ink-500);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .overview-grid, .specs-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    direction: ltr; /* Reset direction for mobile */
  }
  .contact-text {
    order: -1; /* Move text above form on mobile */
  }
}

@media (max-width: 767px) {
  .hero-main {
    max-width: 100%;
  }
  .hero-amenities {
    gap: 1rem;
  }
  .units-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .inquiry-actions {
    width: 100%;
  }
  .btn-login, .btn-contact {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  .overview-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .stat-box {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .project-hero {
    min-height: 500px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

.navbar-brand img {
    height: 65px;
}
.footer-brand img {
    color: #fff;
    height: 150px;
}









