/* =========================================================
   THEME TOKENS
   --------------------------------------------------------- */
:root{
  /* Main brand colors – red & green */
  --brand: #0D6B57;          /* Dark green */
  --accent-green: #3FAE4D;   /* Leaf green */
  --accent-red: #E12120;     /* GLS red */

  --text-on-dark: #ffffff;

  --welcome-bg: #fffef6;
  --welcome-head: #0D6B57;
  --icon: #3FAE4D;
}

/* =========================================================
   BASE
   --------------------------------------------------------- */
html, body{ height: 100%; }
body{
  font-family: "Poppins", sans-serif;
  background: #000;
  color: var(--text-on-dark);
  overflow-x: hidden;
}

/* Utility spacing */
.py-lg-6{
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

/* =========================================================
   HERO
   --------------------------------------------------------- */

   /* HERO overlay grid wrapper */
.hero-grid{
  position: relative;
  z-index: 6;
  pointer-events: auto;
  padding-top: 90px;   /* keeps it clear from topbar */
  padding-bottom: 30px;
}

/* Left text should not force center */
.hero-copy{
  text-align: left !important;
  max-width: 100%;
}
/* More transparent card background */
.hero-form-card{
  background: rgba(255, 255, 255, 0.387);  /* was .92 */
  color: #152126;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

/* Submit button */
.btn-hero-submit{
  background: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: .75rem 1rem;
}

.btn-hero-submit:hover{
  filter: brightness(.95);
  color: #fff;
}

.btn-hero-submit:disabled{
  opacity: .7;
  cursor: not-allowed;
}


/* Form heading */
.hero-form-head .h5{
  font-weight: 700;
  margin: 0;
}

.rc-anchor-logo-portrait {
	margin: 10px 0 0 -8px !important;
}
.rc-anchor {
	width:280px !important;
}

.rc-anchor .rc-anchor-normal .rc-anchor-light{
	width: 280px !important;
}

.rc-anchor-normal .rc-anchor-pt {
	margin:2px 45px 0 0 !important;
}

/* Make inputs look clean */
.hero-form-card .form-control{
  border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 991.98px){
  .hero-grid{
    padding-top: 80px;
  }
  .headline{
    font-size: 40px !important;
  }
.hero{
  position: relative;
  min-height: 140vh !important;
	  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  }
	
.brand img{ height: 60px!important; }
	
}

@media (max-width: 375.98px){
  .hero-grid{
    padding-top: 70px;
  }
  .headline{
    font-size: 34px !important;
  }
  .hero-form-card{
    padding: 16px;
  }
  .hero{
  position: relative;
  min-height: 160vh !important;
  }
}

.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

/* Global gradient */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(0,0,0,.15) 0%,
              rgba(0,0,0,.35) 60%,
              rgba(0,0,0,.45) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ken Burns zoom */
@keyframes kb-zoom-in {
  0%   { transform: scale(1) translateZ(0); }
  100% { transform: scale(1.06) translateZ(0); }
}

.carousel-item .hero-img{
  will-change: transform;
  transform: scale(1);
}
.carousel-item.active .hero-img{
  animation: kb-zoom-in 9s ease-in-out forwards;
}
.carousel-item-next .hero-img,
.carousel-item-prev .hero-img{
  animation: none !important;
}
@media (prefers-reduced-motion: reduce){
  .carousel-item.active .hero-img{
    animation: none !important;
    transform: none !important;
  }
}

/* Topbar */
.topbar{
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 18px clamp(16px, 5vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
}
.brand{
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: #fff; font-weight: 600; letter-spacing: .5px;
}
.brand img{ height: 80px; width: auto; }
.btn-visit{
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff; font-weight: 600; border-radius: 999px;
  padding: .6rem 1rem;
  box-shadow: 0 8px 18px rgba(225,33,32,.35);
}
.btn-visit:hover{
  filter: brightness(.95);
  color: #fff;
}
.menu-btn{
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(3px);
}
.menu-icon, .menu-icon::before, .menu-icon::after{
  content: ""; display: block;
  width: 18px; height: 2px; background: #fff; border-radius: 1px;
}
.menu-icon::before{ transform: translateY(-6px); }
.menu-icon::after{ transform: translateY(4px); }

@media (max-width: 575.98px){
  .btn-visit{ padding: .5rem .85rem; font-size: .9rem; }
  .brand img{ height: 38px; }
}

/* Slider layout */
#heroSlider { position: absolute; inset: 0; z-index: 0; }
.hero::after { z-index: 1; }

/* Overlay content */
.hero-overlay{
  position: absolute; inset: 0; z-index: 6;
  display: grid; place-items: center;
  pointer-events: none;
}
.hero-copy{
  position: relative;
  pointer-events: auto;
  max-width: 1000px;
  padding: 0 1rem;
  color: #fff; text-align: center;
}
.hero-copy::before{
  content:"";
  position:absolute;
  inset: -1rem -1.25rem;
  background: radial-gradient(60% 50% at 50% 50%,
              rgba(0,0,0,.30) 0%, rgba(0,0,0,0) 100%);
  filter: blur(2px);
  z-index:-1; border-radius: 24px;
}

/* Images */
.hero-img{
  width: 100%; height: 100vh;
  object-fit: cover; object-position: center; display: block;
}
.hero-gradient{
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% 20%, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%);
  z-index: 0;
}

/* Hero Typography */
.eyebrow{
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #c9f5c1; font-size: .85rem;
}
.headline{
  font-family: "Italiana", sans-serif;
  font-weight: 700; line-height: 1.1;
  font-size: 52px; letter-spacing: 1px;
  margin: .35rem 0 1rem;
  text-shadow: 0 10px 24px rgba(0,0,0,.45);
}
.subhead{
     margin-inline: auto;
  font-weight: 500; opacity: .92;
  font-size: clamp(.8rem, .7rem + .5vw, 1.15rem);
  padding:0 1em;
}

.subhead2{
    margin-inline: auto;
  font-weight: 600; opacity: 1;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.15rem);
   padding:0 1em;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next{ z-index: 6; }
.carousel-indicators [data-bs-target]{
  width: 10px; height: 10px; border-radius: 50%;
}
.carousel-indicators{ z-index: 6; }

/* =========================================================
   OFFCANVAS MENU
   --------------------------------------------------------- */
.offcanvas{
  background: #041b12;
  color: #E7F6FF;
}
.offcanvas .offcanvas-title{
  font-weight: 700;
  color: #fff;
}
.nav-link{
  color: #E7F6FF; font-weight: 500;
}
.nav-link:hover{
  color: #fff;
  background: rgba(13,107,87,.25);
  border-radius: .5rem;
}
.offcanvas .btn-brand{
  background: var(--accent-red);
  color: #fff;
  font-weight: 600;
  border: none;
}
.top-actions{
  display: flex; gap: .6rem; align-items: center;
}

/* =========================================================
   WELCOME / FEATURES
   --------------------------------------------------------- */
.welcome-section{
  background: var(--welcome-bg);
  color: #152126;
}
.welcome-title{
  font-family: "Italiana", sans-serif;
  color: var(--welcome-head);
  font-weight: 500; letter-spacing: .02em;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
}
.welcome-intro{
  max-width: 1050px;
  line-height: 1.7;
  color: #2a2e2b;
  font-weight: 400;
}
.step-ico{
  min-width:56px; text-align:center;
}
.badge-step{
  background:#fff;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  color:var(--accent-red);
  font-weight:700;
  padding:.5rem .7rem;
}
@media (max-width: 575.98px){
  .welcome-intro{ font-size: 1rem; }
}

/* =========================================================
   WALKTHROUGH / TEXT SECTIONS
   --------------------------------------------------------- */
.walkthrough-section{
  background: #fffef6;
  color: #152126;
}
.wt-title{
  font-family: "Italiana", serif;
  color: var(--welcome-head);
  font-weight: 500; letter-spacing: .02em;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
}
.wt-intro{
  color: #2b2f2c;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.video-thumb{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.video-thumb .thumb-img{
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.video-thumb:hover .thumb-img{
  transform: scale(1.03);
}
.play-btn{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-modal .modal-content{
  border: none;
  border-radius: 12px;
}
.video-modal .modal-dialog{
  max-width: min(1100px, 96vw);
}

/* =========================================================
   GALLERY
   --------------------------------------------------------- */
.gallery-section{
  background: #fffef6;
  color: #152126;
}
.gallery-title{
  font-family: "Italiana", serif;
  color: var(--welcome-head);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
}
.gallery-grid{
  display: grid;
  gap: clamp(14px, 1.5vw, 24px);
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
.g-item{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  transform-style: preserve-3d;
  perspective: 800px;
}
.g-item img{
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease;
}
.g-item:hover img{
  transform: translateZ(20px) scale(1.04);
  filter: saturate(1.05);
}
.lightbox-modal .modal-content{
  border: none;
  border-radius: 12px;
}
.lightbox-modal .ratio{ background: #000; }
.object-fit-contain{ object-fit: contain; }
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px; line-height: 1;
  backdrop-filter: blur(2px);
}
.lightbox-nav:hover{
  background: rgba(255,255,255,.2);
}
.lightbox-nav.prev{ left: 10px; }
.lightbox-nav.next{ right: 10px; }
@media (max-width: 575.98px){
  .lightbox-nav{
    width: 38px; height: 38px; font-size: 22px;
  }
}

/* =========================================================
   LOCATION
   --------------------------------------------------------- */
.location-section{
  background: #FFFEF6;
  color: #152126;
}
.location-section .eyebrow{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #163029;
  opacity: .9;
  font-size: .9rem;
}
.loc-headline{
  font-family: "Italiana", serif;
  font-weight: 400;
  line-height: 1.05;
  color: var(--welcome-head);
  font-size: clamp(2rem, 1rem + 5vw, 3rem);
}
.loc-copy{
  color: #2b2f2c;
  line-height: 1.8;
  max-width: 60ch;
}
.btn-map{
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .9rem 1.25rem;
  border-radius: .5rem;
  border: 0;
}
.btn-map:hover{
  filter: brightness(.95);
  color: #fff;
}
.map-card{
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.map-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* =========================================================
   PLANS / FACTSHEET
   --------------------------------------------------------- */
.plans-section{
  background: #fffef6;
  color: #152126;
}
.plans-title{
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  color: var(--welcome-head);
}
.plan-img img{
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.table{ margin-bottom: 0; }

/* =========================================================
   AMENITIES GRID
   --------------------------------------------------------- */
.amenities-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px){
  .amenities-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px){
  .amenities-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px){
  .amenities-grid{ grid-template-columns: repeat(5, 1fr); }
}
.amen-card{
  background: #fff;
  color: var(--welcome-head);
  text-align: left;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.amen-card i{ color: var(--accent-red); }
.amen-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
}
.amen-card p{ color:#555; }

/* =========================================================
   FLOOR PLANS (LOCKED PREVIEW)
   --------------------------------------------------------- */
.floorplans-section{
  background: #fffef6;
  color: #152126;
}
.section-title{
  font-family: "Italiana", serif;
  color: var(--welcome-head);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
}
.section-intro{
  color:#2b2f2c;
  line-height:1.8;
}
.plans-grid{
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  grid-template-columns: repeat(1, minmax(0,1fr));
}
@media (min-width: 576px){
  .plans-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 992px){
  .plans-grid{ grid-template-columns: repeat(5, minmax(0,1fr)); }
}
.plan-card{
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}
.plan-media{
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3f4f5;
  overflow: hidden;
}
.plan-img{
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: filter .25s ease, transform .35s ease;
}
.blurred-img{
  filter: blur(7px) brightness(.9);
  transform: scale(1.02);
}
/* Lock overlay */
.plan-lock{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  cursor:pointer !important;
}
.plan-lock i{ font-size: 1.4rem; }
.plan-caption{
  padding: 14px 14px 16px;
  display: grid;
  gap: 6px;
}
.plan-caption .btn.btn-brand{
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  border: none;
}
/* When unlocked */
.floorplans-section.unlocked .blurred-img{
  filter: none;
  transform: none;
}
.floorplans-section.unlocked .plan-lock{
  display: none;
}

/* =========================================================
   SPECIFICATIONS
   --------------------------------------------------------- */
.spec-list li{
  margin-bottom: .4rem;
}

/* =========================================================
   FOOTER
   --------------------------------------------------------- */
.site-footer{
  background: radial-gradient(circle at top, #00008B 0%, #00008B 55%, #00008B 100%);
  color: #fff;
  font-size: 1rem;
  position: relative;
}
/*.footer-brand{
  max-height: 70px;
  margin-bottom: .25rem;
}*/
.footer-logo .tagline{
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0;
}
.footer-contact a{
  display: inline-block;
  margin: 0 .3rem;
  color: #fff;
  font-size: 1.25rem;
  transition: transform .15s ease, color .15s ease;
}
.footer-contact a:hover{
  color: #25D366;
  transform: translateY(-2px) scale(1.04);
}
.footer-disclaimer{
  max-width: 1024px;
  margin: 0 auto;
	font-size: 0.75rem;
  line-height: 1.5;
}
.footer-disclaimerr {
  line-height: 2;
	font-size: 0.75rem;
	max-width: 1024px; 
	margin: 0 auto;
}

.footer-copy{
  opacity: .7;
  margin-top: .5rem;
  font-size: .85rem;
}

/* =========================================================
   STICKY CTAS
   --------------------------------------------------------- */
.sticky-ctas, .mobile-cta-bar{ display: none; }
@media (min-width: 768px){
  .sticky-ctas{
    position: fixed;
    right: clamp(10px, 1.6vw, 22px);
    bottom: clamp(80px, 8vh, 140px);
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    z-index: 1030;
    pointer-events: none;
  }
  .sticky-ctas .cta-btn{
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: .6rem .95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
    font-size: .95rem;
    line-height: 1;
    white-space: nowrap;
  }
  .sticky-ctas .cta-btn i{ font-size: 1.15rem; }
}
.cta-inquiry{
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225,33,32,.35);
}
.cta-inquiry:hover{
  filter: brightness(.96);
  color: #fff;
  transform: translateY(-1px);
}
.cta-whatsapp{
  background: #25D366;
  color: #0c3a1f;
  border-color: rgba(0,0,0,.04);
}
.cta-whatsapp i{ font-size: 1.2rem; }
.cta-whatsapp:hover{
  filter: brightness(.96);
  color: #0c3a1f;
  transform: translateY(-1px);
}
@media (max-width: 767.98px){
  .mobile-cta-bar{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg,
                rgba(0,0,0,0) 0%,
                rgba(10,10,10,.65) 22%,
                rgba(10,10,10,.85) 100%);
    z-index: 1030;
    backdrop-filter: blur(6px);
  }
  .m-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .78rem .9rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.12);
    font-size: clamp(.88rem, 3.2vw, .98rem);
    line-height: 1;
    min-height: 44px;
  }
  .m-cta i{ font-size: 1.15rem; }
  .m-cta-inquiry{
    background: var(--accent-red);
    color: #fff;
  }
  .m-cta-whatsapp{
    background: #25D366;
    color: #0c3a1f;
  }
}

/* =========================================================
   SCROLL-IN ANIMATIONS
   --------------------------------------------------------- */
[data-animate]{
  --reveal-translate: 20px;
  --reveal-scale: .98;
  --reveal-blur: 6px;
  --reveal-delay: 0ms;
  --reveal-duration: 700ms;
  --reveal-ease: cubic-bezier(.2,.65,.2,1);
  opacity: 0;
  transform: translate3d(0, var(--reveal-translate), 0)
             scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  will-change: opacity, transform, filter;
}
[data-animate].in-view{
  opacity: 1;
  transform: none;
  filter: none;
}
[data-animate~="fade"]{ --reveal-translate: 0; }
[data-animate~="scale"]{ --reveal-scale: .96; }
[data-stagger] > *{
  --reveal-delay: calc(var(--stagger-base, 80ms) * var(--i, 0));
}
@media (prefers-reduced-motion: reduce){
  [data-animate]{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   MICRO-INTERACTIONS
   --------------------------------------------------------- */
.btn, .btn-visit, .btn-map, .cta-btn, .m-cta{
  transition: transform .18s ease,
              box-shadow .18s ease,
              filter .18s ease;
}
.btn:hover, .btn-visit:hover, .btn-map:hover,
.cta-btn:hover, .m-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.brand:hover img{
  filter: drop-shadow(0 4px 12px rgba(255,255,255,.18));
}
.offcanvas .nav-link{
  position: relative;
  overflow: hidden;
}
.offcanvas .nav-link::after{
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .6rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .6;
}
.offcanvas .nav-link:hover::after{
  transform: scaleX(1);
}

/* =========================================================
   CONSTRUCTION STATUS SECTION
   --------------------------------------------------------- */
.construction-section {
  background: #fffef6;
  color: #152126;
}

.status-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.construction-img-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .18s ease;
}

.construction-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

.construction-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.20);
}


.status-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

.status-title {
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 1rem;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.status-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .95rem;
}

.status-list i {
  color: var(--brand);
}

.status-progress {
  background: #e8ece9;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent-red);
  border-radius: 10px;
  transition: width .6s ease;
}

.testimonials-section{
  background: #fffef6;
  color: #152126;
}

.test-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.test-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.test-img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent-red);
}
.test-card p{
	text-align: justify;
}
	

.site-footer{
  background:#EFEFEF;
  color: #fff;
}

.site-footer h6{
  color: #D0FA20;
}

.site-footer p{
  margin-bottom: .5rem;
	color: #3FAE4D; 
}
.site-footer hr {
  border-color:#3FAE4D;
}
.site-footer hr.short {
  border-color:#3FAE4D;
	width: 200px;
}

.footer-disclaimerr {
  line-height: 2;
	font-size: 0.75rem;
	max-width: 1024px; 
	margin: 0 auto;
}

    /* FOOTER */
    .ty-footer{
      background: #0D6B57;
      color: #fff;
    }

.virtual360-section {
  background: #fffef6;
  color: #152126;
}

.virtual-tour-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  background: #000;
  transition: transform .2s ease, box-shadow .2s ease;
}

.virtual-tour-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.virtual-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.construction-img-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .18s ease;
}

.construction-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

.construction-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.20);
}

/* =========================================================
   TAB GALLERY - New construction
   ========================================================= */
.tab-gallery-section{
  background: #fffef6;
  color: #152126;
}

.tab-gallery-tabs .nav-link{
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #152126;
  background: rgba(13, 107, 87, .08);
  border: 1px solid rgba(0,0,0,.06);
}

.tab-gallery-tabs .nav-link:hover{
  background: rgba(13, 107, 87, .14);
}

.tab-gallery-tabs .nav-link.active{
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: 0 10px 24px rgba(225,33,32,.22);
}

.tab-g-item{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-decoration: none;
}

.tab-g-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}

.tab-g-item p{
	color: #0D6B57;
	text-align: center;
	margin: 1em;
}

@media (min-width: 768px){
  .tab-g-item img{ height: 210px; }
}

.tab-g-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.tab-g-item:hover img{
  transform: scale(1.04);
}


.trust-strip{
  background: #fffef6;
  padding: 64px 0;
}

.trust-head{
  margin-bottom: 28px;
}

.trust-kicker{
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .75;
  margin-bottom: 10px;
  color: #0D6B57; /* matches your theme */
}

.trust-title{
  font-family: "Italiana", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.1rem + 2.2vw, 3rem);
  margin: 0;
  color: #0D6B57;
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}

.trust-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.trust-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.trust-icon{
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0D6B57;   /* circle fill */
  color: #fff;          /* icon stroke */
  box-shadow: 0 10px 22px rgba(13,107,87,.20);
}

.trust-main{
  font-weight: 500;
  font-size: clamp(.25rem, 1.1rem + .9vw, 1.6rem);
  color: #152126;
  line-height: 1.1;
}

.trust-value{
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.6rem);
  font-weight: 500;
  color: #152126;
}

.trust-sub{
  margin-top: 8px;
  color: #2b2f2c;
  font-weight: 500;
  opacity: .85;
}

.trust-chip{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(225,33,32,.08); /* subtle red tint */
  border: 1px solid rgba(225,33,32,.18);
  color: #E12120;
  font-weight: 500;
  margin-left: 6px;
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 991.98px){
  .trust-grid{ grid-template-columns: 1fr; }
  .trust-item{ text-align: center; }
}

.banks-section{
  background: #fffef6;          /* same warm off-white */
  padding: 64px 0;
}


.banks-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 40px);
  align-items: center;
  justify-items: center;
}

/* each logo box */
.bank-logo{
  width: 100%;
  display: grid;
  place-items: center;
  padding: 10px 8px;
}

/* keep same height like reference */
.bank-logo img{
  max-width: 100%;
  height: 44px;                 /* uniform height */
  object-fit: contain;
  filter: none;
}

/* Responsive */
@media (max-width: 991.98px){
  .banks-grid{ grid-template-columns: repeat(3, 1fr); }
  .bank-logo img{ height: 42px; }
}

@media (max-width: 575.98px){
  .banks-grid{ grid-template-columns: repeat(2, 1fr); }
  .bank-logo img{ height: 38px; }
}

.assurance-section{
  background: #ffffff;
  padding: 70px 0;
}

.assurance-title, .banks-title{
  font-family: "Italiana", serif;
  color: #0D6B57;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
  margin-bottom: 10px;
}

.assurance-sub, .banks-sub{
  color: #5c6663;
  max-width: 700px;
  margin: auto;
}

/* Card */
.assurance-card{
  background: #fffef6;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0,0,0,.05);
  transition: .3s;
}

.assurance-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

/* Icon circle */
.assurance-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #0D6B57;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 20px rgba(13,107,87,.25);
}

.assurance-card h6{
  font-weight: 600;
  color: #152126;
  margin: 0;
}

/* Mobile spacing */
@media(max-width:767px){
  .assurance-section{
    padding: 50px 0;
  }
}

.developer-section{
  background: #fffef6;
  padding: 80px 0;
}

/* Heading */
.developer-title{
  font-family: "Italiana", serif;
  color: #0D6B57;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem);
  margin-bottom: 25px;
}

/* Bullet points */
.developer-points{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.developer-points li{
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  color: #2b2f2c;
  font-weight: 500;
}

.developer-points i{
  color: #0D6B57;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Trust line */
.developer-trust{
  font-weight: 600;
  color: #E12120;
  margin-top: 10px;
}

/* Right card */
.developer-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 25px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  transition: .3s;
}

.developer-card:hover{
  transform: translateY(-6px);
}

.developer-logo{
  max-height: 140px;
  margin-bottom: 20px;
}

.developer-card h5{
  color: #0D6B57;
  font-weight: 700;
}

.developer-card p{
  color: #555;
  margin-bottom: 0;
}

/* Mobile */
@media(max-width:991px){
  .developer-section{
    text-align: center;
  }

  .developer-points li{
    justify-content: center;
  }
}
/* ===============================
   BACK TO TOP
================================= */
#backToTop{
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(18px, 3vh, 32px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.9);
  transition: all .35s ease;
  z-index: 1030;
}

#backToTop:hover{
  transform: translateY(-2px) scale(1);
  filter: brightness(.95);
}

/* show state */
#backToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* keep above mobile CTA bar */
@media (max-width: 767.98px){
  #backToTop{
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/*@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 27.333333%;
    }
}
*/

.offer-cta-btn{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: .25s ease;
}

.offer-cta-btn:hover{
  filter: brightness(.95);
  color: #fff;
}





