/* ==========================================================================
   VRG PROPERTIES — COMPONENTS
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform var(--duration-fast) var(--ease-soft),
              box-shadow var(--duration-fast) var(--ease-soft),
              background var(--duration-fast) var(--ease-soft),
              color var(--duration-fast) var(--ease-soft),
              border-color var(--duration-fast) var(--ease-soft);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(229, 106, 46, 0.32);
}
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: 0 18px 38px rgba(229, 106, 46, 0.42); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(18,18,18,0.25);
}
.btn-outline-dark:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }

.btn-white {
  background: #fff;
  color: var(--color-primary);
}
.btn-white:hover { background: #fff0e8; }

.btn-block { width: 100%; }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--duration-base) var(--ease-soft),
              box-shadow var(--duration-base) var(--ease-soft),
              height var(--duration-base) var(--ease-soft);
}

.navbar.is-solid {
  background: rgba(18,18,18,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  height: var(--navbar-height);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand strong { color: var(--color-primary); }
.brand span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  padding-block: 0.4rem;
  transition: color var(--duration-fast) var(--ease-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--duration-base) var(--ease-soft);
}

.nav-links a:hover,
.nav-links a.is-active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--space-md); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease-soft), opacity var(--duration-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ===========================================
   HERO SECTION
=========================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#121212;
    color:#fff;
}

/* ===========================================
   BACKGROUND VIDEO
=========================================== */

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:0;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    z-index:-2;

    animation:heroZoom 20s ease-in-out infinite alternate;
}

/* ===========================================
   DARK OVERLAY
=========================================== */

.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(18,18,18,.88) 0%,
        rgba(18,18,18,.72) 30%,
        rgba(18,18,18,.40) 55%,
        rgba(18,18,18,.20) 100%
    );

    z-index:-1;
}

/* ===========================================
   HERO INNER
=========================================== */

.hero-inner{
    position:relative;
    z-index:20;

    width:100%;

    padding-top:var(--navbar-height);
}

/* ===========================================
   GRID
=========================================== */

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;

    gap:var(--space-2xl);

    align-items:center;

    min-height:calc(100vh - var(--navbar-height));
}

/* ===========================================
   LEFT CONTENT
=========================================== */

.hero-content{
    position:relative;
    z-index:25;

    max-width:560px;
}

.hero-content .eyebrow{
    color:var(--color-accent);

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:18px;
}

.hero-title{
    font-size:var(--fs-hero);

    line-height:1.05;

    color:#fff;

    margin-bottom:22px;
}

.hero-title span{
    color:var(--color-primary);
}

.hero-desc{
    margin-top:18px;

    max-width:500px;

    color:rgba(255,255,255,.82);

    font-size:1.08rem;

    line-height:1.8;
}

/* ===========================================
   BUTTONS
=========================================== */

.hero-actions{
    display:flex;

    gap:20px;

    margin-top:42px;

    flex-wrap:wrap;
}


/* ===========================================
   VIDEO ZOOM
=========================================== */

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/* ---------- Search / filter CTA bar (home only) ---------- */
.search-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-lg);
  margin-top: -60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: var(--space-md);
  align-items: end;
}

.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: 0.78rem; font-weight: 600; color: var(--color-text-muted); }
.search-field select,
.search-field input {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  background: var(--color-bg);
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.stat-item { text-align: left; }
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
}
.stat-item .label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 2px; }
.section--dark .stat-item .label,
.section--tint .stat-item .label { color: var(--color-text-muted); }

/*==================================================
PROPERTY CARD
==================================================*/

.property-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(15,107,52,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .45s cubic-bezier(.22,1,.36,1);
}

.property-card:hover{
    transform:translateY(-14px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12),
        0 35px 80px rgba(15,107,52,.12);
}

/*==================================================
IMAGE
==================================================*/

.property-media{
    position:relative;
    overflow:hidden;
    width:100%;
    height:280px;
}

.property-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .8s ease;
}

.property-card:hover .property-image{
    transform:scale(1.08);
}

/* Overlay */

.property-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.18),
        rgba(0,0,0,.05),
        transparent
    );
    transition:.35s;
}

.property-card:hover .property-media::after{
    background:linear-gradient(
        to top,
        rgba(0,0,0,.30),
        transparent
    );
}

/*==================================================
BADGE
==================================================*/

.property-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:5;

    padding:8px 16px;

    background:#0F6B34;
    color:#fff;

    border-radius:40px;

    font-size:.75rem;
    font-weight:600;

    letter-spacing:.3px;
}

.property-badge.coming-soon{
    background:#d97706;
}

/*==================================================
FAVORITE BUTTON
==================================================*/

.property-fav{
    position:absolute;
    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    background:rgba(255,255,255,.20);
    backdrop-filter:blur(8px);

    cursor:pointer;

    transition:.35s;

    z-index:5;
}

.property-fav:hover{
    background:#0F6B34;
    transform:scale(1.1);
}

/*==================================================
BODY
==================================================*/

.property-body{

    display:flex;
    flex-direction:column;

    flex:1;

   padding-left: 24px;
   padding-right: 24px;
   padding-top: 10px;
   padding-bottom: 10px;

}

/*==================================================
TITLE
==================================================*/

.property-title-row{

    min-height:5px;

    margin-bottom:10px;

}

.property-body h3{

    margin:0;

    font-size:1.2rem;

    color:#111;

    line-height:1.45;

}

/*==================================================
LOCATION
==================================================*/

.property-loc{

    min-height:5px;

    margin:0 0 5px;

    color:#777;

    font-size:.9rem;

    line-height:1.5;

}

/*==================================================
META
==================================================*/

.property-meta{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    min-height:5px;

    padding:5px 0;

    border-top:1px solid #ececec;

    border-bottom:1px solid #ececec;

}

.property-meta span{

    color:#666;

    font-size:.85rem;

}

/*==================================================
PRICE
==================================================*/

.property-price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:10px;

    margin-top:10px;

}

.property-price{

    color:rgb(229, 106, 46);

    font-size:1.25rem;

    font-weight:700;

}

.property-price small{

    display:block;

    margin-top:4px;

    font-size:.75rem;

    color:#777;

}

/*==================================================
BUTTON
==================================================*/

.property-link{

    margin-top:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    width:100%;

    padding:14px;

    border-radius:12px;

    border:1px solid #ddd;

    background:#E56A2E;

    color:#fffbfb;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.property-link svg{

    transition:.35s;

}

.property-card:hover .property-link{

    background:#080808;

    color:#fff;

    border-color:#090909;

}

.property-card:hover .property-link svg{

    transform:translateX(5px);

}

/*==================================================
SLIDER ALIGNMENT
==================================================*/

.slider-track{

    display:flex;

    align-items:stretch;

    gap:30px;

}

.slider-track > *{

    display:flex;

    height:100%;

}

.slider-track .property-card{

    width:100%;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.property-media{

height:250px;

}

}

@media(max-width:992px){

.property-media{

height:230px;

}

.property-body{

padding:22px;

}

}

@media(max-width:768px){

.property-media{

height:220px;

}

.property-body{

padding:20px;

}

.property-body h3{

font-size:1.1rem;

}

}

@media(max-width:576px){

.property-media{

height:200px;

}

.property-body{

padding:18px;

}

.property-badge{

font-size:.7rem;

padding:7px 14px;

}

.property-fav{

width:38px;

height:38px;

}

.property-price{

font-size:1.05rem;

}

}
/* ---------- Project card (with progress) ---------- */
.project-card .property-body { gap: var(--space-xs); }
.progress-track {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  overflow: hidden;
  margin-top: 4px;
}
.progress-fill { height: 100%; background: var(--gradient-primary); border-radius: var(--radius-pill); }
.progress-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--color-text-muted); margin-top: 6px; }

/* ---------- Category / feature tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-md); }
.tile-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base), border-color var(--duration-base);
}
.tile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.tile-icon {
  width: 54px; height: 54px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: #FBEFE6;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.tile-icon svg { width: 26px; height: 26px; }
.tile-card h4 { font-size: 0.95rem; }

/* ---------- Amenity strip ---------- */
.amenity-strip { display: flex; flex-wrap: wrap; gap: var(--space-lg); justify-content: space-between; }
.amenity-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-2xs); text-align: center; width: 110px; }
.amenity-item .tile-icon { width: 60px; height: 60px; background: #fff; box-shadow: var(--shadow-soft); }
.amenity-item span { font-size: 0.82rem; color: var(--color-text-muted); }

/* ---------- Value / benefit cards ---------- */
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card .tile-icon { margin: 0 0 var(--space-sm); }
.value-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { color: var(--color-text-muted); font-size: 0.92rem; }

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  color: #fff;
}
.testimonial-quote { flex: 1; }
.testimonial-quote p { font-size: 1.15rem; line-height: 1.6; font-family: var(--font-heading); font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: var(--space-sm); margin-top: var(--space-md); }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; }
.testimonial-person h5 { font-size: 0.95rem; color: #fff; }
.testimonial-person span { font-size: 0.8rem; color: var(--color-text-light-muted); }
.testimonial-stars { color: var(--color-accent); font-size: 0.9rem; margin-top: 4px; letter-spacing: 2px; }

.slider-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast), border-color var(--duration-fast);
}
.slider-arrow:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.slider-arrow svg { width: 18px; height: 18px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--space-lg); }
.slider-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: background var(--duration-fast), width var(--duration-fast);
}
.slider-dots button.is-active { background: var(--color-primary); width: 22px; border-radius: var(--radius-pill); }
.section--white .slider-dots button,
.section--tint .slider-dots button { background: rgba(18,18,18,0.18); }
.section--white .slider-dots button.is-active,
.section--tint .slider-dots button.is-active { background: var(--color-primary); }

.slider-track-wrap { overflow: hidden; }
.slider-track { display: flex; gap: var(--space-lg); transition: transform var(--duration-slow) var(--ease-standard); }
.slider-track > * { flex: 0 0 calc(33.333% - (var(--space-lg) * 2 / 3)); }

.slider-controls { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-lg); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  color: #fff;
  flex-wrap: wrap;
}
.cta-band.is-dark { background: var(--color-dark); }
.cta-left { display: flex; align-items: center; gap: var(--space-md); }
.cta-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-icon svg { width: 26px; height: 26px; }
.cta-text h3 { color: #fff; font-size: 1.35rem; }
.cta-text p { color: rgba(255,255,255,0.82); margin-top: 4px; font-size: 0.92rem; }
.cta-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,0.75); padding-top: var(--space-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: var(--space-2xs); margin-top: var(--space-md); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration-fast), border-color var(--duration-fast);
}
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; margin-bottom: var(--space-md); font-weight: 600; }
.footer-col ul li { margin-bottom: var(--space-2xs); }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--duration-fast); }
.footer-col a:hover { color: var(--color-primary); }

.newsletter-form { display: flex; gap: 0; margin-top: var(--space-sm); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); padding: 4px; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast);
}
.newsletter-form button:hover { background: var(--color-primary-dark); }
.newsletter-form button svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: #fff; }

/* ---------- Forms (contact) ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { margin-bottom: var(--space-md); display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group label .req { color: var(--color-primary); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  transition: border-color var(--duration-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: var(--space-sm); }

/* ---------- Contact info list ---------- */
.contact-info-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); }
.contact-info-item { text-align: center; }
.contact-info-item .tile-icon { margin: 0 auto var(--space-sm); }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.85rem; color: var(--color-text-muted); }
.contact-info-item a.wa-link { color: var(--color-primary); font-weight: 600; font-size: 0.85rem; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.map-mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-md); }
.map-mini-card { background: #fff; border-radius: var(--radius-sm); padding: var(--space-md); text-align: center; box-shadow: var(--shadow-soft); }
.map-mini-card .tile-icon { margin: 0 auto var(--space-2xs); width: 44px; height: 44px; }
.map-mini-card h5 { font-size: 0.88rem; margin-bottom: 2px; }
.map-mini-card p { font-size: 0.78rem; color: var(--color-text-muted); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 500;
  color: #fff;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--space-2xs); margin-top: var(--space-xl); }
.pagination button {
  min-width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  font-weight: 600;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}
.pagination button.is-active,
.pagination button:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination button.pagination-arrow { border-radius: var(--radius-pill); width: auto; padding: 0 var(--space-md); display: flex; align-items: center; gap: 4px; }

/* ---------- Timeline (Our Promise page) ---------- */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-lg); position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  top: 24px; left: 8%; right: 8%;
  height: 1px;
  background: var(--color-border);
}
.timeline-step { text-align: center; position: relative; }
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.timeline-step h4 { font-size: 0.98rem; margin-bottom: 4px; }
.timeline-step p { font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------- Category tabs (gallery / services) ---------- */
.tab-list { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }
.tab-btn {
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}
.tab-btn svg { width: 15px; height: 15px; }
.tab-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.tab-btn.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ---------- Masonry gallery ---------- */
.masonry {
  columns: 3;
  column-gap: var(--space-md);
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-standard);
}
.masonry-item:hover { transform: translateY(-4px); }
.masonry-item .img-placeholder { transition: transform var(--duration-slow) var(--ease-standard); }
.masonry-item:hover .img-placeholder { transform: scale(1.06); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,18,18,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span { color: #fff; font-size: 0.8rem; font-weight: 600; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-soft);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { width: min(900px, 88vw); }
.lightbox-inner .img-placeholder { border-radius: var(--radius-md); aspect-ratio: 16/10; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--color-primary); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: var(--color-primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.75); margin-top: var(--space-md); font-size: 0.9rem; }

/* ---------- Team card ---------- */
.team-photo { border-radius: var(--radius-lg); overflow: hidden; }

/* ---------- Enquiry mini form (home) ---------- */
.enquiry-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-card); }
.enquiry-card h3 { margin-bottom: var(--space-md); font-size: 1.2rem; }

/* ---------- 404 page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-lg);
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--color-primary);
  line-height: 1;
}
.error-page h2 { color: #fff; margin-top: var(--space-sm); }
.error-page p { color: var(--color-text-light-muted); margin-top: var(--space-sm); max-width: 420px; margin-inline: auto; }
.error-actions { display: flex; gap: var(--space-md); justify-content: center; margin-top: var(--space-xl); flex-wrap: wrap; }

/* ---------- Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s var(--ease-soft), visibility 0.6s var(--ease-soft);
}
.page-loader::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 40%, rgba(229,106,46,0.18), transparent 60%);
  animation: loaderZoom 4s var(--ease-soft) infinite alternate;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.loader-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.loader-brand strong { color: var(--color-primary); }
.loader-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
}
.loader-house {
  width: 120px;
  height: 90px;
  margin: 0 auto var(--space-lg);
}
.loader-house path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawHouse 2.6s var(--ease-soft) forwards infinite;
  filter: drop-shadow(0 0 6px rgba(255,122,48,0.65));
}
.loader-percent {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.loader-status {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: var(--radius-pill);
  transition: width 0.15s linear;
}
/* ===========================================
   FOUNDER SECTION
=========================================== */

.founder-section{
    background:rgb(249 239 230);
    padding:100px 0;
    overflow:hidden;
}

.founder-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:center;
}

/* ===========================
   Founder Image
=========================== */

.founder-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    transition:all .5s ease;
}

.founder-image img{
    width:100%;
    display:block;
    border-radius:24px;
    object-fit:cover;
    height: 580px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1),
        filter .5s ease,
        box-shadow .5s ease;
}

/* Orange Border */

.founder-image::after{

    content:"";

    position:absolute;

    inset:0;

    border:3px solid transparent;

    border-radius:24px;

    transition:.5s ease;

    pointer-events:none;

}

/* ===========================
   Hover Effects
=========================== */

.founder-grid:hover .founder-image{

    transform:translateY(-10px);

}

.founder-grid:hover .founder-image img{

    transform:scale(1.08);

    filter:brightness(1.05);

    box-shadow:0 35px 80px rgba(0,0,0,.25);

}

.founder-grid:hover .founder-image::after{

    border-color:var(--color-primary);

}

/* ===========================
   Content
=========================== */

.founder-content{
    max-width:700px;
    transition:transform .5s ease;
}

.founder-grid:hover .founder-content{

    transform:translateX(8px);

}

/* Eyebrow */

.founder-content .eyebrow{

    position:relative;

    display:inline-block;

    color:var(--color-primary);

    font-weight:700;

    letter-spacing:.15em;

    text-transform:uppercase;

    margin-bottom:22px;

}

.founder-content .eyebrow::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--color-primary);

    transition:.5s ease;

}

.founder-grid:hover .eyebrow::after{

    width:100%;

}

/* Description */

.founder-description{

    margin:22px 0;

    color:#666;

    line-height:1.9;

    font-size:1.05rem;

}

/* Founder Info */

.founder-info{

    margin:35px 0;

}

.founder-info h3{

    font-size:28px;

    color:#111;

    margin-bottom:8px;

    transition:.4s ease;

}

.founder-grid:hover .founder-info h3{

    color:var(--color-primary);

    letter-spacing:1px;

}

.founder-info span{

    color:var(--color-primary);

    font-weight:600;

    font-size:16px;

}

/* ===========================
   Floating Animation
=========================== */

@keyframes founderFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

.founder-image{

    animation:founderFloat 6s ease-in-out infinite;

}

/* ===========================
   Responsive
=========================== */

@media (max-width:991px){

    .founder-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .founder-image{

        max-width:500px;

        margin:auto;

    }

    .founder-content{

        text-align:center;

        margin:auto;

    }

    .founder-grid:hover .founder-content{

        transform:none;

    }

}

@media (max-width:768px){

    .founder-section{

        padding:70px 0;

    }

    .founder-image{

        max-width:100%;

    }

    .founder-info h3{

        font-size:24px;

    }

}
/* ===========================================
   CONTACT SECTION
=========================================== */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-left{

    display:flex;

    flex-direction:column;

}

.contact-details{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin:30px 0;

    color:#666;

}

.contact-image{

    margin-top:35px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.contact-image img{

    width:100%;

    height:500px;

    display:block;

    object-fit: fill;

    transition:.8s ease;

}

.contact-image:hover img{

    transform:scale(1.08);

}

.contact-right{

    width:100%;

}

.enquiry-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-image img{

height:380px;

}

}
/* ===========================================
   PROPERTIES PAGE HERO IMAGE
=========================================== */

.page-hero-media{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.page-hero-media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}

.page-hero-media:hover img{
    transform:scale(1.05);
}
/* ===========================================
   COMING SOON BADGE
=========================================== */

.property-badge.coming-soon{

    background:linear-gradient(135deg,#ff8c32,#ff5a1f);

    color:#fff;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:0 8px 20px rgba(255,122,26,.35);

}

/* ===========================================
   COMING SOON PRICE
=========================================== */

.property-price{
    display:flex;
    align-items:baseline;
    gap:8px;
    color:#E56A2E;
    font-size:1.5rem;
    font-weight:700;
}

.property-price small{
    display:inline;
    font-size:.95rem;
    font-weight:500;
    color:#777;
    margin:0;
}

/* ===========================================
   COMING SOON CARD
=========================================== */

.property-card{

    transition:all .4s ease;

}

.property-card:hover{

    transform:translateY(-10px);

}

.property-card:hover .coming-soon{

    transform:scale(1.05);

}
.hero-bg::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(15,15,15,.78) 0%,
            rgba(15,15,15,.62) 35%,
            rgba(15,15,15,.45) 65%,
            rgba(15,15,15,.30) 100%
        );

    z-index:1;

}
/* Hide navbar Book Site Visit button only on Contact page */
.contact-page .nav-book-btn{
    display: none;
}

.property-loc,
.property-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    transition:color .3s ease;
}

.meta-icon{
    width:18px;
    height:18px;
    flex-shrink:0;
}

/* Default */
.icon-outline{
    display:block;
    color:#E56A2E;
}

.icon-solid{
    display:none;
    color:#E56A2E;
}

/* Hover Text */
.property-loc:hover,
.property-meta span:hover{
    color:#E56A2E;
}

/* Hover Icons */
.property-loc:hover .icon-outline,
.property-meta span:hover .icon-outline{
    display:none;
}

.property-loc:hover .icon-solid,
.property-meta span:hover .icon-solid{
    display:block;
}