/* ============================================
   PT Berkah 26 Real Estate - Custom Styles
   ============================================ */

:root {
  --color-primary: #0B2C66;
  --color-primary-dark: #081F4A;
  --color-secondary: #3B82F6;
  --color-secondary-dark: #1D4ED8;
  --color-accent-light: #60A5FA;
  --gradient-blue: linear-gradient(135deg, #0B2C66 0%, #1D4ED8 50%, #3B82F6 100%);
  --gradient-blue-soft: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  --color-bg: #F8FAFC;
  --color-white: #FFFFFF;
  --color-text: #374151;
  --color-muted: #6B7280;
  --shadow-card: 0 10px 30px -12px rgba(11, 44, 102, 0.15);
  --shadow-hover: 0 20px 40px -12px rgba(11, 44, 102, 0.25);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#loading-screen.hidden-load { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 60px; height: 60px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Navbar - Navy background variant */
.navbar {
  transition: all .3s ease;
  background: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.navbar.scrolled {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.nav-link {
  position: relative;
  color: #E2E8F0;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .5rem 0;
  transition: color .25s ease;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--color-secondary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Feature circle for Kenapa Memilih Kami */
.circle-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 20px -8px rgba(216,162,56,.5);
}
.circle-icon-outline {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto .75rem;
  transition: all .3s ease;
}
.step-item:hover .circle-icon-outline {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Property card v2 */
.pcard-v2 .property-image { aspect-ratio: 16/10; }
.pcard-v2 .love-btn {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease; cursor: pointer;
}
.pcard-v2 .love-btn:hover { background: var(--color-secondary); color: #fff; }

/* Hero */
.hero-bg {
  background:
    linear-gradient(135deg, rgba(11,44,102,.92) 0%, rgba(11,44,102,.75) 60%, rgba(11,44,102,.55) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
}
.hero-title span { color: var(--color-secondary); }

/* Buttons */
.btn-primary {
  background: var(--color-secondary);
  color: #fff; font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  transition: all .3s ease;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 20px -8px rgba(216,162,56,.6);
}
.btn-primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(216,162,56,.7);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid #fff; font-weight: 600;
  padding: .8rem 1.75rem; border-radius: 9999px;
  transition: all .3s ease;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { background: #fff; color: var(--color-primary); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: .7rem 1.5rem; border-radius: 9999px;
  font-weight: 600; transition: all .3s ease;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-ghost:hover { background: var(--color-primary); color: #fff; }

/* Floating hero cards */
.floating-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 35px -12px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: .75rem;
  animation: float 4s ease-in-out infinite;
}
.floating-card i { color: var(--color-secondary); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-card:nth-child(2) { animation-delay: .5s; }
.floating-card:nth-child(3) { animation-delay: 1s; }
.floating-card:nth-child(4) { animation-delay: 1.5s; }

/* Section heading */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.section-eyebrow {
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
}

/* Stat card */
.stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
  border-top: 4px solid var(--color-secondary);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--color-primary);
  line-height: 1;
}

/* Feature card */
.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all .3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), #1a4189);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Property card */
.property-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.property-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.property-card:hover .property-image img { transform: scale(1.08); }
.property-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-secondary);
  color: #fff; font-size: .7rem; font-weight: 600;
  padding: .3rem .7rem; border-radius: 9999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.property-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.property-price {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.15rem;
}
.property-title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.05rem;
  margin: .35rem 0;
}
.property-location {
  color: var(--color-muted);
  font-size: .875rem;
  display: flex; align-items: center; gap: .35rem;
  margin-bottom: .8rem;
}
.property-specs {
  display: flex; gap: 1rem;
  padding-top: .75rem;
  border-top: 1px solid #F1F5F9;
  font-size: .8rem; color: var(--color-muted);
  margin-top: auto;
}
.property-specs span { display: inline-flex; align-items: center; gap: .35rem; }

/* Timeline (Cara Membeli) */
.timeline-step {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.timeline-step:hover { transform: translateY(-6px); }
.timeline-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}

/* Slider (marquee for logos) */
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex; gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.logo-track img, .logo-track .logo-item {
  height: 60px; width: auto;
  filter: grayscale(1); opacity: .7;
  transition: all .3s ease;
}
.logo-item:hover, .logo-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Logo mitra badge styled */
.logo-item {
  height: 70px; padding: 0 1.5rem; min-width: 200px;
  background: #fff; border-radius: .85rem;
  display: inline-flex; align-items: center; justify-content: flex-start;
  gap: .75rem;
  font-weight: 700; color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(11,44,102,.06);
  border: 1px solid #E5E7EB;
  white-space: nowrap;
  transition: all .3s ease;
  flex-shrink: 0;
}
.logo-item:hover { border-color: var(--color-secondary); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(216,162,56,.15); }
.logo-item .brand-mark {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .78rem;
  flex-shrink: 0;
}
.logo-item .brand-name { display: flex; flex-direction: column; line-height: 1.15; font-size: .95rem; }
.logo-item .brand-name small { font-size: .58rem; letter-spacing: .12em; color: #9CA3AF; font-weight: 500; text-transform: uppercase; margin-top: 2px; }

.logo-marquee { padding: 1.25rem 0; }
.logo-track { display: flex; gap: 1.25rem; padding: 0 1rem; align-items: center; }

/* Testimonial */
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-quote { color: var(--color-secondary); font-size: 1.5rem; margin-bottom: .5rem; }
.testimonial-text { flex: 1; font-style: italic; color: var(--color-text); margin-bottom: 1rem; }
.testimonial-user { display: flex; align-items: center; gap: .8rem; }
.testimonial-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(11,44,102,.06);
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-question:hover { background: #F8FAFC; }
.faq-question i { transition: transform .3s ease; color: var(--color-secondary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
  color: var(--color-muted);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Simulasi KPR */
.kpr-panel {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 40px -20px rgba(11,44,102,.2);
}
.kpr-input, .kpr-select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: .6rem;
  font-size: .95rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.kpr-input:focus, .kpr-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(216,162,56,.15);
}
.kpr-result {
  background: linear-gradient(135deg, var(--color-primary), #133C86);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}
.kpr-result .cicilan { color: var(--color-secondary); font-size: 2rem; font-weight: 700; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #E6B24C 100%);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating WA & scroll top */
.floating-wa, .scroll-top {
  position: fixed;
  z-index: 60;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,.3);
}
.floating-wa {
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}
.floating-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.scroll-top {
  right: 20px; bottom: 90px;
  width: 44px; height: 44px;
  background: var(--color-primary); color: #fff;
  opacity: 0; visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-primary-dark); }

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #E2E8F0;
}
.footer-title {
  color: #fff; font-weight: 600;
  margin-bottom: 1rem; font-size: 1rem;
  letter-spacing: .04em;
}
.footer-link {
  color: #CBD5E1; font-size: .9rem;
  transition: color .2s ease;
  display: block; padding: .25rem 0;
}
.footer-link:hover { color: var(--color-secondary); }

/* Page hero (for inner pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(11,44,102,.92), rgba(11,44,102,.75)),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
  color: #fff;
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: .5rem;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.75); font-size: .9rem; }
.page-hero .breadcrumb a { color: var(--color-secondary); }

/* Gallery lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: .5rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; color: #fff; background: rgba(255,255,255,.15);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.3); }

/* Tabs (Property Detail) */
.tab-btn {
  padding: .75rem 1.25rem;
  border-bottom: 3px solid transparent;
  font-weight: 600; color: var(--color-muted);
  cursor: pointer; transition: all .2s ease;
  white-space: nowrap;
}
.tab-btn.active {
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Article card */
.article-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  color: var(--color-secondary); font-size: .75rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.article-title { color: var(--color-primary); font-weight: 600; margin: .35rem 0 .5rem; }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  height: 100vh; width: 85%; max-width: 340px;
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 5rem 1.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { display: block; padding: .8rem 0; border-bottom: 1px solid #F1F5F9; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 80; opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* Utility */
.container-lg { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container-lg { padding-left: 1.5rem; padding-right: 1.5rem; } }

/* Bank card in KPR */
.bank-info-card {
  display: none;
  background: #F8FAFC;
  border-radius: .75rem;
  padding: 1rem;
  margin-top: .75rem;
  border-left: 4px solid var(--color-secondary);
}
.bank-info-card.active { display: block; }
.bank-info-card .logo-mini {
  height: 32px; width: auto; margin-bottom: .5rem;
  background: #fff; padding: .35rem .75rem; border-radius: .35rem;
  font-weight: 700; color: var(--color-primary); display: inline-block;
}

/* Thumbnail gallery */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
  margin-top: .75rem;
}
.thumb-grid img {
  aspect-ratio: 1/1; object-fit: cover;
  border-radius: .5rem; cursor: pointer;
  transition: opacity .2s ease;
  opacity: .75;
}
.thumb-grid img:hover, .thumb-grid img.active { opacity: 1; outline: 3px solid var(--color-secondary); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .floating-card { padding: .75rem 1rem; font-size: .85rem; }
  .thumb-grid { grid-template-columns: repeat(4, 1fr); }
}

/* TEAM CARDS - elegant hover */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11, 44, 102, 0.06);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
  position: relative;
  border: 1px solid rgba(11, 44, 102, 0.05);
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,44,102,0.75) 100%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 1;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 44, 102, 0.18);
}
.team-card:hover::before { opacity: 1; }
.team-photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f1f5f9;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.08);
  filter: saturate(1.1);
}
.team-info {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #fff;
}
.team-name {
  font-weight: 700;
  color: #0B2C66;
  font-size: .95rem;
  margin: 0;
  letter-spacing: .01em;
}
.team-role {
  font-size: .75rem;
  color: #D8A238;
  font-weight: 600;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.team-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0B2C66, #D8A238);
  transition: width .45s ease, left .45s ease;
  z-index: 3;
}
.team-card:hover::after {
  width: 100%;
  left: 0;
}

/* ========================================
   RESPONSIVE FINE-TUNING
   ======================================== */

/* Prevent horizontal scroll globally */
html { overflow-x: hidden; max-width: 100vw; }
img, iframe, video { max-width: 100%; height: auto; }

/* TABLET (768px - 1024px) */
@media (max-width: 1023px) {
  .section-title { font-size: 1.65rem !important; line-height: 1.2; }
  .hero-title, h1 { font-size: 2.25rem !important; line-height: 1.15; }
  .page-hero { padding: 6.5rem 0 3rem; }
  .page-hero h1 { font-size: 2rem; }
  /* Testimonial cards keep width but softer padding */
  .testimonial-card { padding: 1rem !important; }
}

/* MOBILE (< 768px) */
@media (max-width: 767px) {
  /* Compress hero */
  section.relative.pt-24 { padding-top: 5rem !important; }
  h1, .hero-title { font-size: 1.85rem !important; line-height: 1.15; }
  .section-title { font-size: 1.4rem !important; }
  .section-eyebrow { font-size: .7rem; }
  /* Page hero (inner pages) */
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
  /* Stats ribbon */
  .container-lg { padding-left: .85rem; padding-right: .85rem; }
  /* Property cards - keep 2 col on smallest */
  .property-card .property-title { font-size: .95rem; }
  .property-card .property-price { font-size: 1rem; }
  /* Team cards - avoid too tiny */
  .team-name { font-size: .85rem; }
  .team-role { font-size: .68rem; }
  /* Testimonial cards */
  .testimonial-card { width: 240px !important; padding: .9rem !important; }
  /* Footer padding */
  .site-footer { padding-left: 1rem; padding-right: 1rem; }
  /* CTA buttons stack full-width */
  .btn-primary, .btn-outline { padding: .7rem 1.15rem !important; font-size: .85rem; }
  /* Circle icons in "Cara membeli" */
  .circle-icon { width: 56px !important; height: 56px !important; font-size: 1.1rem !important; }
  /* Reduce KPR calculator padding */
  .kpr-input { padding: .55rem .75rem; font-size: .85rem; }
  /* Article/blog cards */
  .article-card img { height: 160px; object-fit: cover; }
  /* Footer grid fallback */
  .site-footer .container-lg { text-align: left; }
}

/* EXTRA SMALL (< 480px) - refine typography */
@media (max-width: 479px) {
  h1, .hero-title { font-size: 1.65rem !important; }
  .section-title { font-size: 1.25rem !important; }
  .floating-wa { width: 48px !important; height: 48px !important; font-size: 1.1rem !important; }
  .scroll-top { width: 40px !important; height: 40px !important; }
  /* Team - 2 cols max */
  .team-name { font-size: .8rem; }
}

/* Ensure mobile menu overlay isn't causing overflow */
.mobile-menu { max-width: 85vw; }

/* ========================================
   STICKY MOBILE BOTTOM BAR
   ======================================== */
.mobile-bottombar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #ffffff;
  border-top: 1px solid rgba(11, 44, 102, .08);
  box-shadow: 0 -6px 20px rgba(11, 44, 102, .1);
  padding: .4rem .5rem calc(.4rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
}
.mobile-bottombar .mbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: .55rem .35rem;
  border-radius: 10px;
  text-decoration: none;
  color: #0B2C66;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.mobile-bottombar .mbb-item i {
  font-size: 1.15rem;
  line-height: 1;
}
.mobile-bottombar .mbb-item:active {
  transform: scale(.94);
}
.mobile-bottombar .mbb-item:hover {
  background: rgba(11, 44, 102, .05);
}
.mobile-bottombar .mbb-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 211, 102, .35);
  transform: translateY(-6px);
  border-radius: 14px;
}
.mobile-bottombar .mbb-primary:hover {
  background: linear-gradient(135deg, #128C7E, #075e54);
  color: #fff;
}
.mobile-bottombar .mbb-primary i {
  font-size: 1.35rem;
}

/* Show only on <=768px, and adjust page bottom padding to avoid content clipping */
@media (max-width: 767px) {
  .mobile-bottombar { display: grid; }
  body { padding-bottom: 72px; }
  /* Hide the round floating WA to avoid overlap with bar */
  .floating-wa { display: none !important; }
  /* Reposition scroll-top so it doesn't collide with bar */
  .scroll-top { bottom: 84px !important; right: 14px !important; }
}

/* ========================================
   KONSULTASI POPUP
   ======================================== */
.kp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 44, 102, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .4s ease;
}
.kp-overlay.active {
  display: flex;
  opacity: 1;
}
.kp-modal {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(.9) translateY(20px);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.kp-overlay.active .kp-modal {
  transform: scale(1) translateY(0);
}
.kp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s ease, transform .2s ease;
  z-index: 3;
}
.kp-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}
.kp-header {
  background: linear-gradient(135deg, #0B2C66 0%, #163d8a 100%);
  color: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.kp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216, 162, 56, 0.25), transparent 60%);
  pointer-events: none;
}
.kp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D8A238, #E5B855);
  color: #0B2C66;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: .65rem;
  box-shadow: 0 4px 12px rgba(216, 162, 56, 0.4);
}
.kp-badge i {
  margin-right: 3px;
}
.kp-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.kp-sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}
.kp-form {
  padding: 1.25rem 1.5rem 1.5rem;
}
.kp-field {
  margin-bottom: .8rem;
}
.kp-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: .3rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.kp-field input,
.kp-field select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  color: #0B2C66;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}
.kp-field input:focus,
.kp-field select:focus {
  border-color: #D8A238;
  box-shadow: 0 0 0 3px rgba(216, 162, 56, 0.15);
}
.kp-submit {
  width: 100%;
  padding: .8rem 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .35rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.kp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
}
.kp-submit:active {
  transform: translateY(0);
}
.kp-submit i {
  font-size: 1.1rem;
}
.kp-note {
  text-align: center;
  font-size: .68rem;
  color: #9ca3af;
  margin: .75rem 0 0;
}
.kp-note i {
  color: #22c55e;
  margin-right: 3px;
}

/* Mobile tweaks for popup */
@media (max-width: 479px) {
  .kp-modal { border-radius: 16px; }
  .kp-title { font-size: 1.1rem; }
  .kp-header { padding: 1.5rem 1.25rem 1.25rem; }
  .kp-form { padding: 1rem 1.25rem 1.25rem; }
}

/* ========================================
   CAREER / KARIER PAGE
   ======================================== */
.career-card {
  background: #fff;
  border: 1px solid rgba(11, 44, 102, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(11, 44, 102, 0.07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(11, 44, 102, 0.15);
}
.career-head {
  background: linear-gradient(135deg, #0B2C66, #163d8a);
  color: #fff;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.career-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D8A238, #E5B855);
  color: #0B2C66;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 15px rgba(216, 162, 56, 0.3);
}
.career-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 .35rem;
  color: #fff;
}
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.8);
}
.career-meta i {
  color: #D8A238;
  margin-right: 4px;
}
.career-body {
  padding: 1.75rem;
}
.career-subtitle {
  font-size: .95rem;
  font-weight: 700;
  color: #0B2C66;
  margin-bottom: .75rem;
}
.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.career-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: #374151;
  line-height: 1.5;
}
.career-list li i {
  margin-top: 4px;
  font-size: .85rem;
  flex-shrink: 0;
}
.career-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(11, 44, 102, 0.15);
}
.btn-apply {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}
.btn-apply i {
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .career-head { flex-direction: column; text-align: center; padding: 1.25rem; }
  .career-meta { justify-content: center; }
  .career-body { padding: 1.25rem; }
  .career-title { font-size: 1.15rem; }
}

/* ========================================
   ARTICLE DETAIL PAGE
   ======================================== */
.article-hero {
  background: linear-gradient(135deg, #0B2C66 0%, #163d8a 100%);
  color: #fff;
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(216, 162, 56, 0.15), transparent 60%);
  pointer-events: none;
}
.article-hero .breadcrumb a { color: #D8A238; text-decoration: none; }
.article-hero .breadcrumb a:hover { text-decoration: underline; }
.article-hero .breadcrumb { color: rgba(255,255,255,.75); }
.article-tag-hero {
  display: inline-block;
  background: linear-gradient(135deg, #D8A238, #E5B855);
  color: #0B2C66;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.article-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 1.25rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.article-meta i {
  color: #D8A238;
  margin-right: 5px;
}
.article-cover-wrap {
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}
.article-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(11, 44, 102, 0.25);
}

.article-content {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}
.article-content .lead {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #D8A238;
  font-weight: 500;
}
.article-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0B2C66;
  margin: 2rem 0 .75rem;
  line-height: 1.3;
}
.article-content p { margin-bottom: 1rem; }
.article-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.article-content ul li {
  margin-bottom: .4rem;
  list-style: disc;
}
.article-content a.inline-link {
  color: #D8A238;
  text-decoration: underline;
  font-weight: 600;
}
.article-content a.inline-link:hover { color: #B8871E; }
.article-content strong { color: #0B2C66; font-weight: 700; }

.callout {
  background: linear-gradient(135deg, rgba(216, 162, 56, 0.08), rgba(216, 162, 56, 0.03));
  border-left: 4px solid #D8A238;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.callout i {
  color: #D8A238;
  font-size: 1.35rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.callout strong { color: #0B2C66; }

.article-cta {
  margin: 2rem 0 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(11, 44, 102, 0.08);
}

.share-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 44, 102, 0.1);
}
.share-label {
  font-size: .85rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.share-buttons {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,.15); }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #000; }
.share-copy { background: #6b7280; }

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-card {
  background: #F8FAFC;
  border: 1px solid rgba(11, 44, 102, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}
.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B2C66;
  margin-bottom: .5rem;
}

/* Sidebar sticky on desktop */
@media (min-width: 1024px) {
  .article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

@media (max-width: 767px) {
  .article-hero { padding: 6rem 0 2.5rem; }
  .article-cover-wrap { margin-top: -2rem; }
  .article-cover { border-radius: 14px; max-height: 260px; }
  .article-content { font-size: .95rem; }
  .article-content h2 { font-size: 1.2rem; margin: 1.5rem 0 .6rem; }
  .article-content .lead { font-size: 1rem; padding-left: .8rem; }
  .article-cta { padding: 1.25rem; }
}

/* ========================================
   PROPERTY CARD (upgraded) — WA icon, CTA, click cursor
   ======================================== */
.property-card.cursor-pointer { cursor: pointer; }

.property-card .property-image { position: relative; }

.property-wa-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
  z-index: 2;
  transition: transform .3s ease, box-shadow .3s ease;
  pointer-events: none;
}
.property-card:hover .property-wa-icon {
  transform: scale(1.12);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.55);
}

.property-cta {
  margin-top: .85rem;
  width: 100%;
  padding: .55rem .85rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.property-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}
.property-cta i { font-size: .95rem; }

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
  display: inline-flex;
  gap: .4rem;
  padding: .5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(11, 44, 102, 0.08);
  flex-wrap: wrap;
  justify-content: center;
}
.pg-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  background: transparent;
  color: #0B2C66;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pg-btn:hover:not(:disabled):not(.pg-active) {
  background: rgba(11, 44, 102, 0.06);
  border-color: rgba(11, 44, 102, 0.15);
}
.pg-btn.pg-active {
  background: linear-gradient(135deg, #0B2C66, #163d8a);
  color: #fff;
  box-shadow: 0 6px 14px rgba(11, 44, 102, 0.3);
}
.pg-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

@media (max-width: 479px) {
  .property-cta { font-size: .75rem; padding: .5rem .65rem; }
  .property-wa-icon { width: 34px; height: 34px; font-size: 1rem; top: 10px; right: 10px; }
  .pg-btn { min-width: 36px; height: 36px; font-size: .82rem; }
}

/* ========================================
   BLUE GRADIENT THEME OVERRIDES
   ======================================== */
/* Navbar → gradient */
.navbar {
  background: linear-gradient(135deg, #081F4A 0%, #0B2C66 50%, #1E40AF 100%) !important;
}

/* Page hero (inner pages) → deeper blue gradient with subtle overlay */
.page-hero {
  background:
    linear-gradient(135deg, rgba(8, 31, 74, 0.94) 0%, rgba(29, 78, 216, 0.88) 60%, rgba(59, 130, 246, 0.82) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat !important;
}
/* Article hero */
.article-hero {
  background: linear-gradient(135deg, #0B2C66 0%, #1D4ED8 60%, #3B82F6 100%) !important;
}
.article-hero::before {
  background: radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.28), transparent 60%) !important;
}
/* Career card head + tag hero */
.career-head {
  background: linear-gradient(135deg, #0B2C66 0%, #1E40AF 50%, #3B82F6 100%) !important;
}
.career-icon {
  background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
  color: #fff !important;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.35) !important;
}
.article-tag-hero {
  background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}
.kp-badge {
  background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}
.kp-header {
  background: linear-gradient(135deg, #0B2C66 0%, #1E40AF 100%) !important;
}
.kp-header::before {
  background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 60%) !important;
}
/* Section highlights that used gold — replace with blue */
.section-eyebrow { color: #3B82F6 !important; }
.article-content .lead { border-left-color: #3B82F6 !important; }
.callout { border-left-color: #3B82F6 !important; background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03)) !important; }
.callout i { color: #3B82F6 !important; }
.property-badge { background: linear-gradient(135deg, #3B82F6, #60A5FA) !important; color: #fff !important; }
.article-tag { background: rgba(59, 130, 246, 0.12) !important; color: #1D4ED8 !important; }
/* Footer bottom accent line */
.site-footer .footer-title { color: #60A5FA !important; }

/* CTA banner boxes with gradient */
.cta-blue-bg {
  background: linear-gradient(135deg, #0B2C66 0%, #1E40AF 50%, #3B82F6 100%);
}

/* ========================================
   PARTNER LOGO CARDS (JPG placeholder)
   ======================================== */
.logo-item img.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(11, 44, 102, 0.08);
  box-shadow: 0 4px 12px rgba(11, 44, 102, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.logo-item:hover img.brand-logo {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(11, 44, 102, 0.15);
}

/* Partner grid on developer/bank pages */
.partner-logo-card {
  background: #fff;
  border: 1px solid rgba(11, 44, 102, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 4px 12px rgba(11, 44, 102, 0.05);
}
.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: #3B82F6;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.18);
}
.partner-logo-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}
.partner-logo-card .name {
  font-weight: 700;
  color: #0B2C66;
  font-size: .95rem;
  text-align: center;
}

/* ========================================
   GOOGLE REVIEW WIDGET
   ======================================== */
.google-review-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.google-review-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.08), transparent 60%);
  pointer-events: none;
}
.grw-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.grw-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(11, 44, 102, 0.1);
  flex-shrink: 0;
}
.grw-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0B2C66;
  margin: 0 0 4px;
}
.grw-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.grw-stars {
  color: #FBBC05;
  font-size: 1rem;
  display: inline-flex;
  gap: 2px;
}
.grw-stars.sm { font-size: .82rem; }
.grw-avg { font-size: .88rem; color: #6b7280; }
.grw-avg b { color: #0B2C66; font-weight: 700; }

.grw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.grw-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 14px rgba(11, 44, 102, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(11, 44, 102, 0.05);
  position: relative;
}
.grw-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(59, 130, 246, 0.12);
  line-height: 1;
}
.grw-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11, 44, 102, 0.12); }
.grw-user { display: flex; gap: .65rem; align-items: center; margin-bottom: .6rem; }
.grw-user img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.grw-user b { display: block; font-size: .88rem; color: #0B2C66; }
.grw-time { font-size: .7rem; color: #9ca3af; }
.grw-text { font-size: .85rem; color: #374151; line-height: 1.55; margin: .5rem 0 0; }

.grw-cta {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(59, 130, 246, 0.25);
}
.grw-cta-text {
  font-size: .95rem;
  color: #374151;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.grw-cta-text b { color: #0B2C66; }
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.75rem;
  background: #fff;
  color: #0B2C66;
  border: 2px solid #4285F4;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.15);
}
.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(66, 133, 244, 0.25);
  background: #f0f7ff;
}

/* Footer review mini-CTA */
.footer-review-mini {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: .65rem .85rem;
  margin-top: .75rem;
  display: flex;
  gap: .6rem;
  align-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.footer-review-mini:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.footer-review-mini .stars { color: #FBBC05; font-size: .78rem; }
.footer-review-mini small { color: rgba(255,255,255,.85); font-size: .72rem; display: block; }
.footer-review-mini b { color: #fff; font-size: .82rem; display: block; }

@media (max-width: 900px) {
  .grw-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .google-review-wrap { padding: 1.75rem 1.25rem; border-radius: 18px; }
  .grw-title { font-size: 1.15rem; }
  .grw-logo { width: 48px; height: 48px; }
  .btn-google-review { padding: .7rem 1.25rem; font-size: .85rem; }
}
