:root{
  --navy: #0B1B33;
  --navy-soft: #14294A;
  --gold: #C99A3E;
  --gold-dark: #B4872F;
  --gray-soft: #F5F6F8;
  --text-muted: #5C6472;
}

*{ box-sizing: border-box; }

body{
  font-family: 'Inter', sans-serif;
  color: #1C2430;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

a{ text-decoration: none; }

.py-lg-6{ padding-top: 5rem; padding-bottom: 5rem; }

.text-gold{ color: var(--gold) !important; }
.bg-soft{ background-color: var(--gray-soft); }

/* ===== Navbar ===== */
.custom-navbar{
  padding: .9rem 0;
  box-shadow: 0 2px 12px rgba(11,27,51,.06);
}
.logo-text{ display:flex; flex-direction:column; line-height:1.05; }
.logo-img{ object-fit: contain; flex-shrink: 0; }
.logo-full-img{ width:auto; display:block; }
.logo-title{ font-family:'Poppins',sans-serif; font-weight:800; font-size:1.05rem; color: var(--navy); letter-spacing:.5px; }
.logo-sub{ font-size:.6rem; font-weight:600; letter-spacing:1.5px; color: var(--gold-dark); }

.navbar-nav .nav-link{
  font-weight: 500;
  color: #33394A;
  padding: .5rem .9rem !important;
  font-size: .95rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{ color: var(--navy); font-weight:600; }

.btn-dark-navy{
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: .6rem 1.3rem;
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid var(--navy);
}
.btn-dark-navy:hover{ background: var(--navy-soft); color:#fff; }

.btn-gold{
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid var(--gold);
}
.btn-gold:hover{ background: var(--gold-dark); color:#fff; }

.btn-outline-navy{
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 500;
  padding: .55rem 1.2rem;
  background: transparent;
}
.btn-outline-navy:hover{ background: var(--navy); color:#fff; }

.btn-soon{
  border: 1px solid #C7CBD3;
  color: #6B7280;
  border-radius: 8px;
  font-weight: 500;
  padding: .55rem 1.2rem;
  background: transparent;
}

/* ===== Hero Carousel ===== */
.hero-carousel{ position: relative; }
.hero-slide{
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(11,27,51,.96) 30%, rgba(11,27,51,.55) 60%, rgba(11,27,51,.15) 100%);
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items:center;
  margin-bottom: .8rem;
}
.hero-title{
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-desc{
  color: #D7DBE3;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.6rem;
}

.hero-nav-icon{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 1.1rem;
  background: rgba(255,255,255,.08);
  transition: all .2s ease;
}
.hero-nav-icon:hover{ background: var(--gold); border-color: var(--gold); }
.carousel-control-prev, .carousel-control-next{ width: 70px; opacity:1; }

.hero-indicators{
  margin-bottom: 1.6rem;
}
.hero-indicators button{
  width: 34px !important;
  height: 4px !important;
  border-radius: 3px;
  background-color: rgba(255,255,255,.4) !important;
  opacity: 1 !important;
  border: 0 !important;
  margin: 0 5px !important;
}
.hero-indicators button.active{ background-color: var(--gold) !important; }

/* ===== Section titles ===== */
.section-title{
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc{
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.about-image-wrap{ border-radius: 20px; overflow:hidden; box-shadow: 0 20px 45px rgba(11,27,51,.15); }
.about-img{ width:100%; height:420px; object-fit:cover; }

/* ===== Unit Bisnis Cards ===== */
.unit-card{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  transition: all .25s ease;
}
.unit-card:hover{
  box-shadow: 0 16px 35px rgba(11,27,51,.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.unit-logo{ display:flex; align-items:center; gap:.5rem; margin-bottom: 1.3rem; }
.unit-name{ display:flex; flex-direction:column; line-height:1.05; }
.unit-name span{ font-family:'Poppins',sans-serif; font-weight:800; font-size:.85rem; color: var(--navy); letter-spacing:.5px; }
.unit-name small{ font-size:.62rem; font-weight:700; color: var(--gold-dark); letter-spacing:1px; }
.unit-title{ font-size: 1.1rem; margin-bottom:.6rem; }
.unit-desc{ color: var(--text-muted); font-size: .9rem; margin-bottom: 1.4rem; min-height: 66px; }

/* ===== Layanan Kami (Services) ===== */
.services-title{
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.title-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 0;
  margin-top: 1rem;
}
.title-divider span{
  width: 90px;
  height: 1px;
  background: #C7CBD3;
}
.title-divider i{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: #fff;
  margin: 0 8px;
}

.service-item{
  display:flex;
  gap: 1.3rem;
  align-items:flex-start;
}
.service-icon{
  font-size: 2.1rem;
  color: var(--navy);
  flex-shrink: 0;
  width: 54px;
  line-height: 1;
  margin-top: .2rem;
}
.service-item h5{ font-size: 1.15rem; margin-bottom: .5rem; }
.service-item p{ color: var(--text-muted); font-size: .92rem; margin-bottom: 0; }

/* ===== Stats bar ===== */
.stats-bar{
  background: var(--navy);
  padding: 2.4rem 0;
}
.stat-item{
  display:flex;
  align-items:center;
  gap: .9rem;
  justify-content: center;
}
.stat-item i{
  font-size: 1.7rem;
  color: var(--gold);
}
.stat-item h3{
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}
.stat-item p{
  color: #AEB6C4;
  margin: 0;
  font-size: .85rem;
}
@media (min-width: 768px){
  .stat-item{ justify-content:flex-start; }
}

/* ===== Nilai Kami ===== */
.value-icon{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #E7E9EE;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--gold-dark);
}
.value-item h6{ font-weight:700; margin-bottom:.5rem; }
.value-item p{ color: var(--text-muted); font-size: .85rem; }

/* ===== Page Banner (Portfolio, dll) ===== */
.page-banner{
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  position: relative;
  padding-top: 2rem;
}
.page-banner-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,27,51,.92) 0%, rgba(11,27,51,.86) 100%);
}
.page-banner .eyebrow{ justify-content:center; }
.page-banner-title{
  color:#fff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
.page-banner .breadcrumb-item a{ color:#AEB6C4; }
.page-banner .breadcrumb-item.active{ color: var(--gold); }
.page-banner .breadcrumb-item + .breadcrumb-item::before{ color:#5C6472; }

/* ===== Portfolio Filter & Grid ===== */
.filter-btn{
  border: 1px solid #DDE1E8;
  background: #fff;
  color: var(--text-muted);
  border-radius: 30px;
  padding: .5rem 1.3rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s ease;
}
.filter-btn:hover{ border-color: var(--navy); color: var(--navy); }
.filter-btn.active{
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.portfolio-card{
  display:block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background:#000;
}
.portfolio-img{ overflow:hidden; position:relative; }
.portfolio-img img{
  width:100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
  display:block;
}
.portfolio-card:hover .portfolio-img img{ transform: scale(1.08); }

.portfolio-overlay{
  position:absolute; inset:0;
  background: rgba(11,27,51,0);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .3s ease;
}
.portfolio-overlay i{
  font-size: 1.3rem;
  color:#fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  transform: scale(.7);
  transition: all .3s ease;
}
.portfolio-card:hover .portfolio-overlay{ background: rgba(11,27,51,.45); }
.portfolio-card:hover .portfolio-overlay i{ opacity:1; transform: scale(1); }

.portfolio-info{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
}
.badge-cat{
  display:inline-block;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.portfolio-info h6{
  color:#fff;
  font-size: .98rem;
  margin: 0;
}

.portfolio-cta{
  background: var(--navy);
  padding: 3.5rem 0;
}
.portfolio-cta h2{ color:#fff; font-size: 1.8rem; margin-bottom:.6rem; }
.portfolio-cta p{ color:#AEB6C4; margin-bottom:0; }

/* ===== Footer ===== */
.footer{
  background: var(--navy);
  color: #C7CCD6;
}
.footer-tagline{ color:#AEB6C4; font-size:.92rem; margin-bottom:0; }
.footer-heading{
  color:#fff;
  font-weight:700;
  font-size: .95rem;
  margin-bottom: 1.1rem;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  font-size:.88rem;
}
.footer-links li{ margin-bottom:.6rem; color:#AEB6C4; }
.footer-links a{ color:#AEB6C4; }
.footer-links a:hover{ color: var(--gold); }
.contact-links li{ display:flex; gap:.5rem; align-items:flex-start; }
.contact-links i{ color: var(--gold); margin-top:.15rem; }

.social-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.social-icon:hover{ background: var(--gold); border-color: var(--gold); }

.newsletter-form .form-control{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  color:#fff;
  border-radius: 8px 0 0 8px;
}
.newsletter-form .form-control::placeholder{ color:#8891A0; }
.newsletter-form .btn-gold{ border-radius: 0 8px 8px 0; }

.footer-divider{ border-color: rgba(255,255,255,.12); margin: 2.2rem 0 1.4rem; }

/* ===== Holding bar (breadcrumb kecil di landing page unit bisnis) ===== */
.holding-bar{
  background: #060F1E;
  color: #AEB6C4;
  font-size: .82rem;
  padding: .55rem 0;
}
.holding-bar a{ color:#AEB6C4; }
.holding-bar a:hover{ color: var(--gold); }
.holding-bar strong{ color:#fff; }

/* ===== Sub-brand navbar (unit bisnis landing pages) ===== */
.navbar-sub{
  padding: .9rem 0;
  background: var(--navy);
}
.navbar-sub .nav-link{
  color: rgba(255,255,255,.75);
  font-weight: 500;
  padding: .5rem .9rem !important;
  font-size: .92rem;
}
.navbar-sub .nav-link:hover{ color:#fff; }
.sub-accent-pixel{ color:#D8A8FF; font-size:.6rem; font-weight:700; letter-spacing:1.5px; }
.sub-accent-pro{ color:#7FE0C4; font-size:.6rem; font-weight:700; letter-spacing:1.5px; }
.sub-accent-stay{ color:#FFC98A; font-size:.6rem; font-weight:700; letter-spacing:1.5px; }
.sub-accent-cipta{ color:#E4C88A; font-size:.6rem; font-weight:700; letter-spacing:1.5px; }

.btn-sub-cta{
  border-radius: 8px;
  padding: .6rem 1.3rem;
  font-weight: 600;
  font-size: .9rem;
  color: #0B1B33;
  border: none;
}
.btn-sub-pixel{ background:#B77BE0; color:#fff; }
.btn-sub-pixel:hover{ background:#9B5FC7; color:#fff; }
.btn-sub-pro{ background:#3FAE8F; color:#fff; }
.btn-sub-pro:hover{ background:#2E8A70; color:#fff; }
.btn-sub-stay{ background:#D98A3D; color:#fff; }
.btn-sub-stay:hover{ background:#B96F29; color:#fff; }
.btn-sub-cipta{ background: var(--gold); color:#fff; }
.btn-sub-cipta:hover{ background: var(--gold-dark); color:#fff; }

/* ===== Sub-brand Hero ===== */
.subbrand-hero{
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 2rem;
}
.subbrand-overlay{ position:absolute; inset:0; }
.subbrand-overlay-pixel{ background: linear-gradient(100deg, rgba(45,20,90,.94) 30%, rgba(45,20,90,.55) 70%); }
.subbrand-overlay-pro{ background: linear-gradient(100deg, rgba(8,45,38,.94) 30%, rgba(8,45,38,.55) 70%); }
.subbrand-overlay-stay{ background: linear-gradient(100deg, rgba(74,38,14,.94) 30%, rgba(74,38,14,.55) 70%); }
.subbrand-overlay-cipta{ background: linear-gradient(100deg, rgba(38,42,48,.94) 30%, rgba(38,42,48,.55) 70%); }

.subbrand-title{
  color:#fff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.subbrand-desc{
  color:#E6E6EC;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

/* ===== Service Card (dipakai Askara Pixel & unit lain) ===== */
.service-card{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 16px;
  padding: 1.7rem 1.4rem;
  height: 100%;
  transition: all .25s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,27,51,.08); }
.service-card-icon{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
  color:#fff;
  margin-bottom: 1.1rem;
}
.svc-pixel{ background: linear-gradient(135deg,#8E44AD,#B77BE0); }
.svc-pro{ background: linear-gradient(135deg,#0F6B54,#3FAE8F); }
.svc-stay{ background: linear-gradient(135deg,#9E602A,#D98A3D); }
.svc-cipta{ background: linear-gradient(135deg,#3A3F47,#6B7280); }
.service-card h6{ font-weight:700; margin-bottom:.5rem; font-size:1.02rem; }
.service-card p{ color: var(--text-muted); font-size: .87rem; margin-bottom:0; }

/* ===== Mini stat (Askara Pixel tentang section) ===== */
.mini-stat{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  text-align:center;
}
.mini-stat h3{ font-size: 1.7rem; margin-bottom:.2rem; color: var(--navy); }
.mini-stat p{ font-size:.82rem; color: var(--text-muted); margin:0; }

/* ===== Filter buttons per brand (active color override) ===== */
.filter-btn-pixel.active{ background:#8E44AD; border-color:#8E44AD; }
.filter-btn-pro.active{ background:#0F6B54; border-color:#0F6B54; }
.filter-btn-stay.active{ background:#9E602A; border-color:#9E602A; }
.filter-btn-cipta.active{ background:#4A5568; border-color:#4A5568; }

/* ===== Client Logos ===== */
.client-logo{
  background:#fff;
  border-radius: 12px;
  padding: .6rem;
  display:flex;
  align-items:center;
  justify-content:center;
  filter: grayscale(15%);
  transition: all .2s ease;
}
.client-logo:hover{ filter:none; transform: translateY(-3px); }
.client-logo img{ width:100%; height:auto; }

/* ===== Property / Unit Listing Cards (Pro & Stay) ===== */
.listing-card{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 16px;
  overflow:hidden;
  height:100%;
  transition: all .25s ease;
}
.listing-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,27,51,.08); }
.listing-img{ position:relative; overflow:hidden; }
.listing-img img{ width:100%; height:210px; object-fit:cover; display:block; }
.listing-tag{
  position:absolute; top:14px; left:14px;
  padding: .3rem .8rem;
  border-radius: 30px;
  font-size:.72rem;
  font-weight:700;
  color:#fff;
}
.listing-body{ padding: 1.2rem 1.3rem 1.4rem; }
.listing-body h6{ font-size:1rem; margin-bottom:.4rem; }
.listing-meta{ color: var(--text-muted); font-size:.82rem; margin-bottom:.7rem; display:flex; gap:1rem; flex-wrap:wrap; }
.listing-meta span{ display:flex; align-items:center; gap:.35rem; }
.listing-price{ font-weight:700; font-size:1.05rem; }

/* ===== Status badge (Askara Cipta proyek) ===== */
.status-badge{
  display:inline-block;
  padding:.3rem .8rem;
  border-radius: 30px;
  font-size:.72rem;
  font-weight:700;
}
.status-selesai{ background:#E4F5EE; color:#1E8A5F; }
.status-berjalan{ background:#FFF3DA; color:#B4872F; }
.status-akan-datang{ background:#E9ECF3; color:#4A5568; }

/* ===== Proses / Tahapan steps ===== */
.process-step{
  text-align:center;
  padding: 1.5rem 1rem;
  position:relative;
}
.process-num{
  width: 54px; height:54px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
  font-size:1.1rem;
  color:#fff;
  margin: 0 auto 1rem;
}
.process-step h6{ font-weight:700; margin-bottom:.4rem; }
.process-step p{ color:var(--text-muted); font-size:.85rem; margin:0; }

/* ===== Facility icons (Askara Stay) ===== */
.facility-item{
  text-align:center;
  padding: 1.2rem .5rem;
}
.facility-item i{ font-size:1.6rem; margin-bottom:.6rem; display:block; }
.facility-item span{ font-size:.85rem; color: var(--text-muted); font-weight:500; }

/* ===== Blog / Berita cards ===== */
.blog-card{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 16px;
  overflow:hidden;
  height:100%;
  transition: all .25s ease;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,27,51,.08); }
.blog-img{ overflow:hidden; }
.blog-img img{ width:100%; height:200px; object-fit:cover; display:block; transition: transform .4s ease; }
.blog-card:hover .blog-img img{ transform: scale(1.06); }
.blog-body{ padding: 1.3rem 1.3rem 1.5rem; }
.blog-cat{
  display:inline-block;
  color: var(--gold-dark);
  background: #FBF3E3;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  padding: .25rem .7rem;
  border-radius: 30px;
  margin-bottom:.7rem;
}
.blog-date{ color: var(--text-muted); font-size:.78rem; margin-bottom:.4rem; }
.blog-body h5{ font-size:1.05rem; margin-bottom:.6rem; line-height:1.4; }
.blog-excerpt{ color: var(--text-muted); font-size:.88rem; margin-bottom:1rem; }
.blog-readmore{ font-size:.85rem; font-weight:600; color: var(--navy); }
.blog-readmore i{ transition: transform .2s ease; }
.blog-card:hover .blog-readmore i{ transform: translateX(3px); }

.featured-blog{
  background:#fff;
  border: 1px solid #E7E9EE;
  border-radius: 20px;
  overflow:hidden;
}
.featured-blog img{ width:100%; height:100%; object-fit:cover; min-height:280px; }
.featured-blog .blog-body{ padding: 2rem; display:flex; flex-direction:column; justify-content:center; height:100%; }
.featured-blog h3{ font-size:1.5rem; margin-bottom:.8rem; }

/* ===== Mission list ===== */
.mission-list{ padding-left: 1.1rem; color: var(--text-muted); font-size:.95rem; }
.mission-list li{ margin-bottom: .6rem; }

/* ===== Floating WhatsApp Button ===== */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 1050;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover{
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,.6);
}
.wa-float i{ line-height: 1; }

@keyframes wa-pulse{
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 575px){
  .wa-float{
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }
}

/* ===== Simple Image Lightbox (Askara Pixel Work & Askara Stay units) ===== */
.lightbox-trigger{ cursor: zoom-in; position: relative; display: block; overflow: hidden; }
.lightbox-zoom-icon{
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(11,27,51,.6);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: .95rem;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.lightbox-trigger:hover .lightbox-zoom-icon,
.gallery-trigger:hover .lightbox-zoom-icon{ opacity: 1; }
.gallery-trigger{ cursor: pointer; position: relative; }

.lightbox-modal .modal-dialog{
  max-width: 900px;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.lightbox-modal .modal-content{
  background: transparent;
  border: none;
}
.lightbox-modal img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close{
  position: absolute;
  top: -18px; right: -18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  border: none;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  z-index: 5;
}
.lightbox-close:hover{ background: var(--gold); color:#fff; }

/* ===== Property / Project Gallery Modal (Askara Pro & Askara Cipta) ===== */
.gallery-modal .modal-dialog{ max-width: 820px; }
.gallery-modal .modal-content{
  border-radius: 16px;
  overflow: hidden;
  border: none;
}
.gallery-modal .modal-header{
  border-bottom: none;
  position: absolute;
  right: 0; top: 0;
  z-index: 6;
  padding: 1rem;
}
.gallery-modal .btn-close{
  background: #fff;
  border-radius: 50%;
  width: 36px; height:36px;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.gallery-modal .carousel-item img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.gallery-modal .carousel-caption-label{
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(11,27,51,.75);
  color:#fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 30px;
}
.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next{ width: 50px; }
.gallery-modal .carousel-indicators{ margin-bottom: .6rem; }
.gallery-modal .carousel-indicators button{
  width: 8px !important; height: 8px !important;
  border-radius: 50%;
  background-color: rgba(255,255,255,.6) !important;
  border: 0 !important;
}
.gallery-modal .carousel-indicators button.active{ background-color: #fff !important; }
.gallery-modal-body{
  padding: 1.4rem 1.6rem 1.6rem;
  background: #fff;
}
.gallery-modal-body h5{ margin-bottom: .5rem; }
.gallery-modal-body p{ color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }

/* ===== WhatsApp button on listing/property cards ===== */
.btn-wa-listing{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  margin-top: .8rem;
}
.btn-wa-listing:hover{ background: #1EBE59; color:#fff; }

/* ===== Article Detail Page ===== */
.article-title{
  font-size: 2.1rem;
  line-height: 1.3;
  max-width: 820px;
}
.article-cover{
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.article-body{
  max-width: 820px;
  margin: 0 auto;
}
.article-body p{
  color: #33394A;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.blog-img, .featured-blog img{ cursor: pointer; }

/* ===== Responsive ===== */
@media (max-width: 991px){
  .hero-title{ font-size: 2.3rem; }
  .hero-slide{ min-height: 500px; }
  .navbar-nav{ padding: 1rem 0; }
  .py-lg-6{ padding-top:3rem; padding-bottom:3rem; }
  .service-item{ gap: 1rem; }
}
@media (max-width: 575px){
  .hero-title{ font-size: 1.9rem; }
  .page-banner-title{ font-size: 2rem; }
  .subbrand-title{ font-size: 2.1rem; }
}
