/* =============================================
   NhàViệt — Design System & Styles
   Premium Real Estate Landing Page
   ============================================= */

/* ---- Google Fonts loaded in header.php ---- */

:root {
  /* Colors */
  --gold: #C29F68;
  --gold-light: #FBF8F3;
  --gold-dark: #8F6E3B;
  --gold-glow: rgba(194, 159, 104, 0.25);
  --navy: #1E2229;
  --navy-mid: #2E3540;
  --navy-light: #E9EBEF;
  --navy-surface: rgba(30, 34, 41, 0.03);
  --text: #2D3139;
  --text-muted: #686E78;
  --text-light: #9EA4AC;
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --border: #E9EAE8;
  --success: #34D399;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-12px) translateX(-50%); }
  60% { transform: translateY(-6px) translateX(-50%); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201,169,110,0.2); }
  50% { border-color: rgba(201,169,110,0.5); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(233, 234, 232, 0.6);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  height: 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo span { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(30, 34, 41, 0.75);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-dark);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(30, 34, 41, 0.15);
  color: rgba(30, 34, 41, 0.6);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all var(--transition);
}
.lang-btn.active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* Logo container styling */
.nav-logo-container {
  display: flex;
  align-items: center;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border: 1px solid rgba(194, 159, 104, 0.2);
}

.nav-logo-icon svg {
  width: 18px; height: 18px;
  fill: var(--gold-dark);
}

/* Phone link styling */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-right: 8px;
}
.nav-phone a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-phone svg {
  width: 15px; height: 15px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2;
}

.nav-phone a:hover {
  color: var(--gold-dark);
}

/* Search bar styling */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.nav-search input {
  padding: 8px 16px 8px 36px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  width: 150px;
  transition: all var(--transition);
  color: var(--text);
  background: var(--off-white);
}

.nav-search input:focus {
  width: 190px;
  border-color: var(--gold-dark);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(194, 159, 104, 0.08);
}

.nav-search svg {
  position: absolute;
  left: 12px;
  width: 14px; height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2.5;
  pointer-events: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; }

/* Transparent header overrides */
.nav.nav-transparent:not(.scrolled) {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}
.nav.nav-transparent:not(.scrolled) .nav-logo {
  color: #ffffff;
}
.nav.nav-transparent:not(.scrolled) .nav-logo span {
  color: var(--gold);
}
.nav.nav-transparent:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}
.nav.nav-transparent:not(.scrolled) .nav-links a:hover {
  color: var(--gold);
}
.nav.nav-transparent:not(.scrolled) .nav-phone {
  color: #ffffff;
}
.nav.nav-transparent:not(.scrolled) .nav-phone svg {
  stroke: var(--gold) !important;
}
.nav.nav-transparent:not(.scrolled) .nav-search input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.nav.nav-transparent:not(.scrolled) .nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.nav.nav-transparent:not(.scrolled) .nav-search svg {
  stroke: rgba(255, 255, 255, 0.6) !important;
}
.nav.nav-transparent:not(.scrolled) .lang-btn {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}
.nav.nav-transparent:not(.scrolled) .lang-btn:not(.active) {
  background: transparent;
}
.nav.nav-transparent:not(.scrolled) .nav-hamburger span {
  background: #ffffff;
}

/* =============================================
   HERO (CCVN / CatcamLand Style)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1628;
  padding: 120px 48px 160px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0A1628;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-in-out;
  transform: scale(1);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.04);
  z-index: 1;
}

.hero-image-overlay-full {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 22, 40, 0.72) 0%, rgba(10, 22, 40, 0.4) 40%, rgba(10, 22, 40, 0.05) 100%),
    linear-gradient(to top, rgba(10, 22, 40, 0.35) 0%, transparent 35%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  animation: fadeInUp 1s ease-out;
}

/* Slider dot indicators */
.hero-slider-dots {
  position: absolute;
  right: 80px;
  bottom: 110px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(194, 159, 104, 0.5);
}

@media (max-width: 1024px) {
  .hero-slider-dots {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(194, 159, 104, 0.35);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(194, 159, 104, 0.5);
}
.hero-badge span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 16px rgba(194, 159, 104, 0.3);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, #C29F68, #D9B96E);
  color: #0A1628;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(194, 159, 104, 0.35);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(194, 159, 104, 0.5);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: linear-gradient(135deg, #C29F68, #E5C494);
  color: #0A1628;
  border: none;
  padding: 16px 44px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(194, 159, 104, 0.45);
}
.btn-outline-white:hover {
  background: linear-gradient(135deg, #E5C494, #C29F68);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(194, 159, 104, 0.65);
  color: #0A1628;
}

/* Floating Filter Card (CCVN Style) */
.hero-filter-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 48px;
  z-index: 10;
  transform: translateY(40px);
}

.hero-filter-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-radius: 100px;
  padding: 14px 24px 14px 36px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-group select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  padding: 2px 0;
  border-radius: 4px;
  transition: background 0.2s;
}
.filter-group select option {
  background: #1E2229;
  color: #FFFFFF;
}

.filter-btn {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.filter-btn svg {
  width: 16px; height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}
.filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 1024px) {
  .hero-filter-container {
    position: relative;
    transform: none;
    padding: 0 24px;
    margin-top: 40px;
  }
  .hero-filter-card {
    flex-direction: column;
    border-radius: 16px;
    padding: 24px;
    align-items: stretch;
    gap: 16px;
  }
  .filter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #FFFFFF;
  border-top: 2px solid #E8E2D9;
  border-bottom: 2px solid #E8E2D9;
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, #FFFFFF, transparent); }
.trust-bar::after { right: 0; background: linear-gradient(to left, #FFFFFF, transparent); }

.trust-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 48px;
  font-weight: 700;
}

.trust-marquee {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
  align-items: center;
}
.trust-marquee:hover { animation-play-state: paused; }

.trust-logo-item {
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.trust-logo-item:hover {
  transform: scale(1.08);
}

.trust-logo {
  width: auto;
  height: auto;
  max-height: 100%;
  display: block;
}

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 70px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.75;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

/* =============================================
   VALUE PROPS
   ============================================= */
.value-section {
  background: linear-gradient(to bottom, #FCFAF7 0%, #FFFFFF 100%);
  padding: 70px 48px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: linear-gradient(135deg, #FDFBF7 0%, #FFFFFF 100%);
  border: 1px solid rgba(194, 159, 104, 0.18);
  border-radius: 16px;
  padding: 44px 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(194, 159, 104, 0.04);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #D4A853);
  opacity: 0.3;
  transition: all 0.4s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 159, 104, 0.45);
  box-shadow: 0 20px 48px rgba(194, 159, 104, 0.15);
  background: #FFFFFF;
}
.value-card:hover::before { 
  opacity: 1; 
  height: 4px;
}

.value-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(194, 159, 104, 0.06) 0%, rgba(194, 159, 104, 0.15) 100%);
  border: 1.5px solid rgba(194, 159, 104, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  border-color: transparent;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 15px rgba(194, 159, 104, 0.35);
}
.value-icon svg { 
  width: 26px; height: 26px; 
  stroke: var(--gold-dark); 
  fill: none; 
  stroke-width: 1.8;
  transition: all var(--transition);
}
.value-card:hover .value-icon svg {
  stroke: var(--white);
}

.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   PROJECTS — Warm Luxury Showcase
   ============================================= */
.projects-section {
  background: linear-gradient(175deg, #F8F4EF 0%, #F2ECE3 40%, #EDE6DA 70%, #F5F0E8 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px !important;
}
.projects-section::before {
  content: '';
  position: absolute;
  top: -250px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,159,104,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
}
.projects-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,159,104,0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

/* Shimmer line animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.projects-section .container {
  position: relative;
  z-index: 1;
}

/* Section Header Override */
.projects-section .section-header {
  margin-bottom: 24px;
}
.projects-section .section-tag {
  position: relative;
  padding-left: 30px;
  color: var(--gold-dark);
}
.projects-section .section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 1px;
  background: var(--gold);
}
.projects-section .section-title {
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 44px);
}
.projects-section .section-sub {
  color: var(--text-muted);
}

/* Filter pills */
.proj-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.proj-filter-btn {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(194,159,104,0.2);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}
.proj-filter-btn:hover {
  background: rgba(194,159,104,0.1);
  border-color: rgba(194,159,104,0.4);
  color: var(--gold-dark);
}
.proj-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(194,159,104,0.25);
}

/* Animated gradient divider */
.proj-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(194,159,104,0.35) 30%, rgba(194,159,104,0.35) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  margin-bottom: 48px;
}

/* ---- Featured Hero Card ---- */
.proj-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
  background: #FFFFFF;
  border: 1px solid rgba(194,159,104,0.15);
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.5s, transform 0.4s, opacity 0.3s;
  box-shadow: 0 4px 24px rgba(30,34,41,0.06);
}
.proj-featured:hover {
  border-color: rgba(194,159,104,0.4);
  box-shadow: 0 20px 56px rgba(30,34,41,0.08), 0 0 0 1px rgba(194,159,104,0.15);
  transform: translateY(-3px);
}
.proj-featured-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.proj-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.proj-featured:hover .proj-featured-img img { transform: scale(1.04); }
.proj-featured-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(30,34,41,0.2) 100%);
}

.proj-featured-badges {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; gap: 8px;
  z-index: 2;
}
.proj-fbadge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proj-fbadge.developer {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,159,104,0.3);
}
.proj-fbadge.status {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  color: var(--navy);
  border: 1px solid rgba(194,159,104,0.2);
  font-weight: 600;
}

.proj-featured-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proj-featured-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-featured-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(194,159,104,0.4);
}
.proj-featured-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.proj-featured-loc {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
.proj-featured-loc svg {
  width: 13px; height: 13px;
  stroke: var(--text-light);
  fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.proj-featured-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proj-featured-footer {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(194,159,104,0.12);
}
.proj-featured-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  color: var(--gold-dark);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.proj-featured-price-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 3px;
}
.proj-featured-type {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--gold-light);
  border: 1px solid rgba(194,159,104,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-left: auto;
  font-weight: 500;
}

/* Featured Stats Row */
.proj-featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 14px;
  background: var(--gold-light);
  border-radius: 8px;
  padding: 12px 0;
  border: 1px solid rgba(194,159,104,0.1);
}
.proj-fstat {
  text-align: center;
  position: relative;
}
.proj-fstat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(194,159,104,0.18);
}
.proj-fstat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}
.proj-fstat-label {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Featured Highlights */
.proj-featured-highlights {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.proj-fhighlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.4;
}
.proj-fhighlight svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Featured Price Label */
.proj-featured-price-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

/* Featured CTA Button */
.proj-featured-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.35s;
  box-shadow: 0 4px 18px rgba(194,159,104,0.25);
}
.proj-featured:hover .proj-featured-cta-btn {
  box-shadow: 0 8px 28px rgba(194,159,104,0.35);
  transform: translateY(-2px);
}
.proj-featured-cta-btn svg {
  width: 14px; height: 14px;
  stroke: #fff;
  fill: none; stroke-width: 2;
  transition: transform 0.3s;
}
.proj-featured:hover .proj-featured-cta-btn svg {
  transform: translateX(4px);
}

/* ---- Card Grid ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(194,159,104,0.12);
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
  display: block;
  position: relative;
  box-shadow: 0 2px 12px rgba(30,34,41,0.04);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(194,159,104,0.35);
  box-shadow: 0 20px 56px rgba(30,34,41,0.1), 0 0 0 1px rgba(194,159,104,0.1);
}

.project-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.1); }

.project-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(30,34,41,0.25), transparent);
  pointer-events: none;
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,34,41,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  z-index: 2;
}
.project-card:hover .project-img-overlay { opacity: 1; }
.project-img-overlay span {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transform: translateY(12px);
  transition: transform 0.35s ease;
  box-shadow: 0 4px 20px rgba(194,159,104,0.35);
}
.project-card:hover .project-img-overlay span { transform: translateY(0); }

.project-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(194,159,104,0.3);
}
.project-status {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  z-index: 2;
  border: 1px solid rgba(194,159,104,0.15);
}

.project-body {
  padding: 24px 22px 26px;
  position: relative;
}
/* Gold accent bar */
.project-body::before {
  content: '';
  position: absolute;
  top: 0; left: 22px;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.project-card:hover .project-body::before { width: 52px; }

.project-developer {
  font-size: 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 8px;
}
.project-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.project-location {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}
.project-location svg {
  width: 12px; height: 12px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(194,159,104,0.12);
}
.project-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
}
.project-price-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.project-type {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--gold-light);
  border: 1px solid rgba(194,159,104,0.15);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 500;
}

/* View All Button */
.projects-section .btn-outline-navy {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.projects-section .btn-outline-navy:hover {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,159,104,0.25);
}

/* General btn-outline-navy (for other sections) */
.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.view-all-wrap { text-align: center; margin-top: 56px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.process-section {
  background: linear-gradient(180deg, var(--white) 0%, #F8F4EF 40%, #F2ECE3 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,159,104,0.2), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}

/* Process Card */
.process-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(194,159,104,0.12);
  transition: all 0.4s ease;
  box-shadow: 0 2px 16px rgba(30,34,41,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(194,159,104,0.3);
  box-shadow: 0 16px 48px rgba(30,34,41,0.08), 0 0 0 1px rgba(194,159,104,0.1);
}

/* Step number badge */
.process-card-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  background: #fff;
  border: 2px solid var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(194,159,104,0.15);
  transition: all 0.3s;
}
.process-card:hover .process-card-num {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border-color: var(--gold);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(194,159,104,0.3);
}

/* Icon container */
.process-card-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(194,159,104,0.08), rgba(194,159,104,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 20px;
  transition: all 0.35s;
}
.process-card:hover .process-card-icon {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  box-shadow: 0 8px 24px rgba(194,159,104,0.25);
  transform: scale(1.05);
}
.process-card-icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s;
}
.process-card:hover .process-card-icon svg {
  stroke: #fff;
}

/* Title & desc */
.process-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Tag pill */
.process-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(194,159,104,0.12);
  margin-top: auto;
}

/* Connecting arrow */
.process-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 16px; height: 16px;
}
.process-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

/* =============================================
   LEAD FORM
   ============================================= */
.lead-section {
  position: relative;
  padding: 70px 48px;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FAF6F0 0%, #FFFFFF 100%);
  z-index: 0;
}
.lead-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0px, var(--gold) 1px, transparent 0, transparent 50%
  );
  background-size: 40px 40px;
  z-index: 0;
}

.lead-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}
.lead-left h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.lead-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.lead-trust-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.lead-trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.lead-form {
  background: var(--gold); /* Solid brand gold color */
  border: 1px solid rgba(30, 34, 41, 0.15);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.lead-form h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.lead-form-sub {
  font-size: 14px;
  color: rgba(30, 34, 41, 0.75);
  margin-bottom: 28px;
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-field label .required { color: #e74c3c; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}
.form-field textarea {
  resize: vertical;
  min-height: 70px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(194, 159, 104, 0.04);
  box-shadow: 0 0 0 3px rgba(194, 159, 104, 0.08);
}
.form-field select option {
  background: var(--white);
  color: var(--text);
}

/* 2-column form row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* OR divider */
.form-or-divider {
  text-align: center;
  margin: 16px 0;
  position: relative;
}
.form-or-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.form-or-divider span {
  position: relative;
  background: #fff;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* Quick action buttons */
.form-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-qa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: var(--white);
}
.form-qa-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(194,159,104,0.15);
}
.form-qa-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #1e2229 0%, #2E3540 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
.form-submit:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}
.form-privacy svg {
  width: 12px; height: 12px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  vertical-align: -2px;
  margin-right: 4px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 24px 0;
  display: none;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(52,211,153,0.15);
  border: 2px solid rgba(52,211,153,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: scaleIn 0.5s ease-out;
}
.form-success-icon svg { width: 28px; height: 28px; stroke: var(--success); fill: none; stroke-width: 2.5; }
.form-success h4 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--off-white); }

/* Slider Wrapper */
.testimonials-slider-wrap {
  position: relative;
  margin-top: 48px;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonials-track .testimonial-card {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Arrow Buttons — sit on the sides */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.testi-prev { left: -64px; }
.testi-next { right: -64px; }
.testi-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(194,159,104,0.3);
}
.testi-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.testi-arrow:hover svg {
  stroke: #fff;
}
.testi-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dots Indicator */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(194,159,104,0.4);
}

/* Card styles */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Georgia', serif;
  font-size: 80px;
  color: var(--gold-light);
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); stroke: none; }

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   NEWS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: all 0.4s ease;
  background: var(--white);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.news-card.featured .news-img { height: 200px; }
.news-img { height: 200px; overflow: hidden; background: var(--navy-light); }
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-img img { transform: scale(1.06); }

.news-body { padding: 24px; }
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.news-tag.tag-policy { background: #E8F4FD; color: #1A73E8; }
.news-tag.tag-market { background: #E6F4EA; color: #188038; }
.news-tag.tag-guide { background: #FEF3E2; color: #B45309; }
.news-tag.tag-default { background: var(--gold-light); color: var(--gold-dark); }

.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.news-card:hover .news-title { color: var(--gold-dark); }

.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-date svg {
  width: 13px; height: 13px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

/* =============================================
   OFFICE
   ============================================= */
.office-section {
  background: var(--off-white);
  padding: 70px 48px;
}
.office-section .section-title { color: var(--navy); }

.office-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.office-card:hover {
  background: var(--white);
  border-color: rgba(194, 159, 104, 0.3);
  box-shadow: var(--shadow-md);
}
.office-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.office-card-value {
  font-size: 24px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.office-card-value a {
  color: var(--navy);
  transition: color var(--transition);
}
.office-card-value a:hover { color: var(--gold-dark); }
.office-card-sub { font-size: 14px; color: var(--text-muted); }

.office-address {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.office-address-line {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.office-address-line:last-child { margin-bottom: 0; }
.office-address-icon {
  width: 22px; height: 22px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-address-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.office-address-text { font-size: 15px; color: var(--text); line-height: 1.6; }

.office-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  min-height: 400px;
}
.office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter var(--transition);
}
.office-map:hover iframe { filter: grayscale(0) brightness(1); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #080E14;
  padding: 64px 48px 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-phone-label {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
}
.footer-phone:hover { color: #D4A853; }

.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

/* Vietnam Offices */
.footer-vn-offices {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 0;
  margin-top: 32px;
}
.footer-vn-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-vn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.footer-vn-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  transition: border-color 0.3s;
}
.footer-vn-box:hover {
  border-color: rgba(194,159,104,0.3);
}
.footer-vn-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.footer-vn-city svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.footer-vn-addr {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* Pagination Controls */
.plist-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.pag-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pag-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.pag-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pag-pages {
  display: flex;
  gap: 8px;
}
.pag-page-num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.pag-page-num:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pag-page-num.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(194, 159, 104, 0.25);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}
.back-to-top svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2.5; }

/* =============================================
   FLOATING MOBILE CTA
   ============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 10px 16px;
  gap: 10px;
  justify-content: center;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-cta-bar a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.mobile-cta-call {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.mobile-cta-form {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: var(--white);
}

/* =============================================
   PROJECT DETAIL PAGE
   ============================================= */

/* -- Detail Hero -- */
.detail-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
}
.detail-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,34,41,0.15) 0%, rgba(30,34,41,0.75) 70%, rgba(30,34,41,0.92) 100%);
}
.detail-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px 56px;
}
.detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.3s;
  text-decoration: none;
}
.detail-breadcrumb:hover { color: #fff; }
.detail-breadcrumb svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none; stroke-width: 2;
}
.detail-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.detail-badge {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.detail-badge.developer {
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
}
.detail-badge.status {
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.detail-badge.type {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.detail-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.detail-hero-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 28px;
}
.detail-hero-loc svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none; stroke-width: 2;
}
.detail-hero-price-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.detail-hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.detail-hp-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.detail-hp-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.detail-hp-vnd {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.detail-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(194,159,104,0.3);
}
.detail-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,159,104,0.4);
}
.detail-hero-cta svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none; stroke-width: 2;
}

/* -- Quick Info Bar -- */
.detail-quickbar {
  background: #fff;
  border-bottom: 1px solid rgba(194,159,104,0.1);
  padding: 0;
  box-shadow: 0 2px 16px rgba(30,34,41,0.04);
}
.detail-qb-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.detail-qb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(194,159,104,0.1);
}
.detail-qb-item:last-child { border-right: none; }
.detail-qb-item svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.detail-qb-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.detail-qb-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* -- Detail Section Tags & Titles -- */
.detail-section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.detail-section-tag::before {
  content: '';
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.detail-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* -- Overview Section -- */
.detail-overview {
  padding: 80px 48px;
  background: var(--white);
}
.detail-ov-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-ov-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 24px;
}
.detail-ov-desc p { margin-bottom: 16px; }

/* Stats sidebar */
.detail-stats-card {
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(194,159,104,0.12);
  position: sticky;
  top: 100px;
}
.detail-stats-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(194,159,104,0.15);
}
.detail-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(194,159,104,0.08);
}
.detail-stat-row:last-of-type { border-bottom: none; }
.detail-stat-label {
  font-size: 13px;
  color: var(--text-light);
}
.detail-stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-stat-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-dark);
}
.detail-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
}
.detail-stats-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(194,159,104,0.25);
}
.detail-stats-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,159,104,0.35);
}
.detail-stats-cta svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none; stroke-width: 2;
}

/* -- Highlights Section -- */
.detail-highlights-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
}
.detail-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-highlight-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(194,159,104,0.1);
  transition: all 0.35s;
}
.detail-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,34,41,0.06);
  border-color: rgba(194,159,104,0.25);
}
.detail-hl-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(194,159,104,0.1), rgba(194,159,104,0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.35s;
}
.detail-highlight-card:hover .detail-hl-icon {
  background: linear-gradient(135deg, var(--gold), #D4A853);
}
.detail-hl-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold-dark);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.35s;
}
.detail-highlight-card:hover .detail-hl-icon svg { stroke: #fff; }
.detail-hl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.detail-hl-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -- Policy Section -- */
.detail-policy-section {
  padding: 80px 48px;
  background: var(--white);
}
.detail-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.detail-policy-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}
.detail-policy-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.detail-perk svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.detail-policy-table {
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(194,159,104,0.12);
}
.detail-pt-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.detail-pt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(194,159,104,0.08);
}
.detail-pt-row.last { border-bottom: none; }
.detail-pt-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.detail-pt-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(194,159,104,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
}
.detail-pt-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* -- Map Section -- */
.detail-map-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
}
.detail-map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,34,41,0.06);
  border: 1px solid rgba(194,159,104,0.12);
}
.detail-map-container iframe {
  display: block;
}

/* -- Related Projects -- */
.detail-related-section {
  padding: 80px 48px;
  background: var(--white);
}

/* -- Detail CTA / Contact -- */
.detail-cta-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #1E2229 0%, #252A33 100%);
  position: relative;
}
.detail-cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.detail-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-top: 12px;
}
.detail-cta-title em {
  color: var(--gold);
  font-style: italic;
}
.detail-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}
.detail-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.detail-cta-trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.detail-cta-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.detail-cta-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.detail-cta-form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.detail-cta-section .detail-section-tag {
  color: var(--gold);
}
.detail-cta-section .detail-section-tag::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.detail-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(194,159,104,0.25);
  font-family: inherit;
}
.detail-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,159,104,0.35);
}
.detail-form-submit svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* -- Hero short desc & video button -- */
.detail-hero-shortdesc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
}
.detail-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.detail-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.35s;
}
.detail-video-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.detail-vbtn-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(194,159,104,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.detail-video-btn:hover .detail-vbtn-play { transform: scale(1.1); }
.detail-vbtn-play svg {
  width: 14px; height: 14px;
  fill: #fff; stroke: none;
  margin-left: 2px;
}

/* -- Video Modal -- */
.detail-video-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
}
.detail-video-modal.active {
  opacity: 1; visibility: visible;
}
.detail-vm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
}
.detail-vm-content {
  position: relative; z-index: 2;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.35s;
}
.detail-video-modal.active .detail-vm-content { transform: scale(1); }
.detail-vm-content iframe {
  width: 100%; height: 100%;
  border: none;
}
.detail-vm-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none;
  cursor: pointer;
  z-index: 3;
}
.detail-vm-close svg {
  width: 28px; height: 28px;
  stroke: #fff; fill: none; stroke-width: 2;
}

/* -- Location Image Section -- */
.detail-location-section {
  padding: 80px 48px;
  background: var(--white);
}
.detail-location-img-wrap {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid rgba(194,159,104,0.12);
  box-shadow: 0 4px 24px rgba(30,34,41,0.06);
}
.detail-location-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.detail-location-img-wrap.expanded {
  cursor: zoom-out;
  position: fixed; inset: 0; z-index: 999;
  border-radius: 0; border: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.9);
  max-width: none;
}
.detail-location-img-wrap.expanded img {
  max-height: 90vh;
  width: auto;
  max-width: 95vw;
  object-fit: contain;
}
.detail-loc-zoom-hint {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(30,34,41,0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.detail-location-img-wrap.expanded .detail-loc-zoom-hint { display: none; }
.detail-loc-zoom-hint svg {
  width: 14px; height: 14px;
  stroke: #fff; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* -- Amenities Gallery -- */
.detail-amenities-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
}
.detail-amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-amenity-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.detail-amenity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.detail-amenity-card:hover img { transform: scale(1.08); }
.detail-amenity-overlay {
  position: absolute; inset: 0;
  background: rgba(30,34,41,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.detail-amenity-card:hover .detail-amenity-overlay { opacity: 1; }
.detail-amenity-overlay svg {
  width: 32px; height: 32px;
  stroke: #fff; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.detail-amenity-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(30,34,41,0.8));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* -- Lightbox -- */
.detail-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
}
.detail-lightbox.active { opacity: 1; visibility: visible; }
.detail-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
}
.detail-lb-img-wrap {
  position: relative; z-index: 2;
  max-width: 85vw; max-height: 85vh;
  text-align: center;
}
.detail-lb-img-wrap img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.detail-lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 16px;
}
.detail-lb-close, .detail-lb-prev, .detail-lb-next {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.detail-lb-close:hover, .detail-lb-prev:hover, .detail-lb-next:hover {
  background: rgba(255,255,255,0.2);
}
.detail-lb-close { top: 24px; right: 24px; }
.detail-lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.detail-lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.detail-lb-close svg, .detail-lb-prev svg, .detail-lb-next svg {
  width: 20px; height: 20px;
  stroke: #fff; fill: none; stroke-width: 2;
}

/* -- Legal Section -- */
.detail-legal-section {
  padding: 80px 48px;
  background: var(--white);
}
.detail-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.detail-legal-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(194,159,104,0.1);
}
.detail-legal-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.3s;
}
.detail-legal-blur {
  position: absolute; inset: 0;
  background: rgba(248,244,239,0.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  backdrop-filter: blur(2px);
}
.detail-legal-blur svg {
  width: 28px; height: 28px;
  stroke: var(--gold-dark);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.detail-legal-blur span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
}
.detail-legal-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-warm);
}
.detail-register-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(194,159,104,0.25);
}
.detail-register-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,159,104,0.35);
}
.detail-register-cta svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* -- Pricing Section -- */
.detail-pricing-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #F8F4EF, #F2ECE3);
}
.detail-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.detail-pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 28px;
}
.detail-pricing-table-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(194,159,104,0.12);
}
.detail-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.detail-pricing-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  text-align: left;
}
.detail-pricing-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(194,159,104,0.08);
}
.detail-pricing-table tbody tr:last-child td { border-bottom: none; }
.detail-pricing-table .price-cell {
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'Montserrat', sans-serif;
}
.detail-pricing-blur {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(248,244,239,0.95));
  pointer-events: none;
}

/* Pricing CTA card */
.detail-pricing-cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(194,159,104,0.12);
  text-align: center;
  position: sticky;
  top: 100px;
}
.detail-pcc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(194,159,104,0.1), rgba(194,159,104,0.18));
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.detail-pcc-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-dark);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.detail-pricing-cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.detail-pricing-cta-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.detail-pcc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-light);
}
.detail-pcc-trust svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none; stroke-width: 2;
}

/* -- News Section -- */
.detail-news-section {
  padding: 80px 48px;
  background: var(--white);
}
.detail-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194,159,104,0.08);
  transition: all 0.35s;
}
.detail-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,34,41,0.06);
}
.detail-nc-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.detail-nc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.detail-news-card:hover .detail-nc-img img { transform: scale(1.05); }
.detail-nc-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(194,159,104,0.9);
  color: #fff;
}
.detail-nc-body { padding: 20px; }
.detail-nc-date {
  font-size: 11px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}
.detail-nc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-nc-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- Register Modal -- */
.detail-register-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
}
.detail-register-modal.active { opacity: 1; visibility: visible; }
.detail-rm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.detail-rm-content {
  position: relative; z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s;
}
.detail-register-modal.active .detail-rm-content {
  transform: scale(1) translateY(0);
}
.detail-rm-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(30,34,41,0.05);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.detail-rm-close:hover { background: rgba(30,34,41,0.1); }
.detail-rm-close svg {
  width: 16px; height: 16px;
  stroke: var(--text-muted);
  fill: none; stroke-width: 2;
}
.detail-rm-header {
  text-align: center;
  margin-bottom: 28px;
}
.detail-rm-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.detail-rm-header p {
  font-size: 13px;
  color: var(--text-light);
}
.detail-rm-success {
  text-align: center;
  padding: 20px 0;
}
.detail-rm-success svg {
  width: 48px; height: 48px;
  stroke: var(--gold);
  fill: none; stroke-width: 2;
  margin-bottom: 16px;
}
.detail-rm-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.detail-rm-success p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Detail page section spacing optimization */
.detail-overview,
.detail-highlights-section,
.detail-policy-section,
.detail-map-section,
.detail-related-section,
.detail-cta-section,
.detail-location-section,
.detail-amenities-section,
.detail-legal-section,
.detail-pricing-section,
.detail-news-section {
  padding: 60px 48px;
}

/* =============================================
   PROJECT LISTING PAGE
   ============================================= */
.plist-hero {
  position: relative;
  padding: 140px 48px 60px;
  background: #1E2229;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.plist-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(194, 159, 104, 0.15) 0%, rgba(15, 17, 21, 0.9) 100%);
  z-index: 1;
}
.plist-hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.plist-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.plist-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Search Bar */
.plist-search-bar {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.plist-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(194,159,104,0.1);
}
.plist-search-input-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--text-light);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.plist-search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 18px 0;
  font-family: inherit;
  color: var(--navy);
  background: transparent;
}
.plist-search-input-wrap input::placeholder { color: var(--text-light); }
.plist-search-bar select {
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: var(--navy);
  padding: 18px 20px;
  border-right: 1px solid rgba(194,159,104,0.1);
  background: transparent;
  cursor: pointer;
  min-width: 160px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}
.plist-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--gold), #D4A853);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.plist-search-btn:hover {
  background: linear-gradient(135deg, #D4A853, var(--gold));
}
.plist-search-btn svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Results Section */
.plist-results {
  padding: 56px 48px 80px;
  background: var(--bg-warm);
}
.plist-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.plist-results-count {
  font-size: 15px;
  color: var(--text-muted);
}
.plist-results-count strong {
  color: var(--navy);
  font-size: 18px;
}
.plist-results-count em { color: var(--gold-dark); }
.plist-clear-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(194,159,104,0.15);
  transition: all 0.3s;
}
.plist-clear-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.plist-clear-filter svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
}

/* Project Grid */
.plist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Project Card */
.plist-card {
  background: #FBF8F3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194,159,104,0.15);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(30,34,41,0.04);
}
.plist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,34,41,0.1);
  border-color: rgba(194,159,104,0.3);
  background: #fff;
}

/* Card Image */
.plist-card-img {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}
.plist-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.plist-card:hover .plist-card-img img {
  transform: scale(1.06);
}
.plist-card-tags {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.plist-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.plist-tag.type {
  background: rgba(194,159,104,0.9);
  color: #fff;
}
.plist-tag.status {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  backdrop-filter: blur(4px);
}
.plist-card-hover {
  position: absolute; inset: 0;
  background: rgba(30,34,41,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.plist-card:hover .plist-card-hover { opacity: 1; }

/* Card Body */
.plist-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.plist-card-developer {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.plist-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.plist-card-location {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}
.plist-card-location svg {
  width: 14px; height: 14px;
  stroke: var(--text-light);
  fill: none; stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}
.plist-card-footer {
  border-top: 1px solid rgba(194,159,104,0.08);
  padding-top: 14px;
  margin-top: auto;
}
.plist-price-usd {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
}
.plist-price-vnd {
  font-size: 11px;
  color: var(--text-light);
}

/* Empty State */
.plist-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 400px;
  margin: 0 auto;
}
.plist-empty svg {
  width: 48px; height: 48px;
  stroke: var(--text-light);
  fill: none; stroke-width: 1.5;
  margin-bottom: 20px;
  opacity: 0.4;
}
.plist-empty h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.plist-empty p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* CTA Banner */
.plist-cta {
  padding: 72px 48px;
  background: linear-gradient(180deg, var(--bg-warm), #F2ECE3);
}
.plist-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.plist-cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  
  section { padding: 50px 24px; }
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 24px; max-width: 100%; width: 100%; }
  .hero-filter-container { width: 100%; }

  
  .value-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .proj-featured { grid-template-columns: 1fr; }
  .proj-featured-img { min-height: 280px; }
  .projects-section { padding: 50px 24px 40px !important; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .testi-prev { left: -12px; }
  .testi-next { right: -12px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-arrow { display: none; }
  .office-section { padding: 50px 24px; }
  footer { padding: 48px 24px 24px; }

  /* Detail page responsive */
  .detail-hero-content { padding: 0 24px 48px; }
  .detail-hero-title { font-size: 36px; }
  .detail-qb-items { grid-template-columns: repeat(2, 1fr); }
  .detail-qb-item:nth-child(2) { border-right: none; }
  .detail-ov-grid { grid-template-columns: 1fr; }
  .detail-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-policy-grid { grid-template-columns: 1fr; }
  .detail-cta-grid { grid-template-columns: 1fr; }
  .detail-overview,
  .detail-highlights-section,
  .detail-location-section,
  .detail-amenities-section,
  .detail-legal-section,
  .detail-pricing-section,
  .detail-news-section,
  .detail-cta-section { padding: 45px 24px; }
  .detail-amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-pricing-layout { grid-template-columns: 1fr; }
  .detail-news-grid { grid-template-columns: repeat(2, 1fr); }

  /* Listing page responsive */
  .plist-hero { padding: 120px 24px 48px; }
  .plist-hero-title { font-size: 34px; }
  .plist-grid { grid-template-columns: repeat(3, 1fr); }
  .plist-results { padding: 40px 24px 60px; }
  .plist-cta { padding: 56px 24px; }
}

@media (max-width: 768px) {
  /* Header clean-up for mobile */
  .nav-phone { display: none; }
  .nav-search { display: none; }
  .nav-lang { display: none; }

  /* Hero section mobile */
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-badge { margin-bottom: 20px; padding: 6px 14px; }
  .hero-badge span { font-size: 10px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Hero filter bar — stack vertically on mobile */
  .hero-filter-container {
    position: relative;
    transform: none;
    padding: 0;
    margin-top: 32px;
  }
  .hero-filter-card {
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
    align-items: stretch;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
  }
  .filter-group {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .filter-group label { font-size: 9px; }
  .filter-group select { font-size: 13px; }
  .filter-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Slider dots */
  .hero-slider-dots {
    bottom: auto;
    top: 80px;
    right: 20px;
  }

  /* Project filter pills — horizontal scroll */
  .proj-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .proj-filters::-webkit-scrollbar { display: none; }
  .proj-filter-btn { flex-shrink: 0; white-space: nowrap; }

  /* FIX: Grids → 1 column on mobile */
  .value-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  /* Testimonial arrows */
  .testi-prev { left: -8px; }
  .testi-next { right: -8px; }
  .news-card.featured { grid-column: span 1; }
  .testi-arrow { width: 36px; height: 36px; }
  .testi-arrow svg { width: 16px; height: 16px; }

  /* Lead section */
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-section { padding: 50px 24px; }
  .lead-form { padding: 28px; }
  
  /* Office section */
  .office-inner { grid-template-columns: 1fr; gap: 24px; }
  .office-map { min-height: 300px; }
  .office-map iframe { min-height: 300px; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar { padding: 16px 0; }
  
  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-arrow { display: none; }
  
  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  .back-to-top { bottom: 80px; }
  body { padding-bottom: 70px; }

  /* Section headers */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }

  /* Value cards */
  .value-card { padding: 32px 24px; }
  .value-section { padding: 60px 20px; }

  /* Project cards */
  .proj-featured-info { padding: 24px 20px; }
  .proj-featured-stats { grid-template-columns: repeat(3, 1fr); }
  
  /* News section */
  .news-card-content { padding: 20px 16px; }

  /* Form 2-col → 1 col */
  .form-row-2col { grid-template-columns: 1fr; }

  /* Detail page responsive */
  .detail-hero { min-height: 420px; }
  .detail-hero-title { font-size: 30px; }
  .detail-hp-value { font-size: 28px; }
  .detail-hero-price-row { flex-direction: column; gap: 20px; align-items: flex-start; }
  .detail-qb-items { grid-template-columns: 1fr 1fr; }
  .detail-qb-item:nth-child(2) { border-right: none; }
  .detail-highlights-grid { grid-template-columns: 1fr; }
  .detail-cta-grid { grid-template-columns: 1fr; }
  .detail-cta-form { padding: 28px; }
  .detail-amenity-grid { grid-template-columns: 1fr 1fr; }
  .detail-legal-grid { grid-template-columns: 1fr; }
  .detail-news-grid { grid-template-columns: 1fr; }
  .detail-hero-actions { flex-direction: column; align-items: flex-start; }

  /* Listing page responsive */
  .plist-search-bar { flex-direction: column; border-radius: 12px; }
  .plist-search-input-wrap { border-right: none; border-bottom: 1px solid rgba(194,159,104,0.1); }
  .plist-search-bar select { border-right: none; border-bottom: 1px solid rgba(194,159,104,0.1); min-width: auto; }
  .plist-grid { grid-template-columns: repeat(2, 1fr); }
  .plist-hero-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 16px 48px; }
  .hero-content { padding: 0; }
  .hero h1 { font-size: 24px; line-height: 1.2; }
  .hero-sub { font-size: 13px; line-height: 1.7; }
  .hero-badge { padding: 5px 12px; }
  .hero-badge span { font-size: 9px; letter-spacing: 0.08em; }
  .hero-filter-card { padding: 16px; gap: 10px; }
  .filter-group { padding: 8px 12px; }

  section { padding: 36px 16px; }

  /* All grids single column */
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .projects-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row-2col { grid-template-columns: 1fr; }

  /* Typography */
  .section-title { font-size: 22px; }
  .section-sub { font-size: 13px; }

  /* Stats */
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 24px; }

  /* Cards */
  .value-card { padding: 28px 20px; }
  .value-section { padding: 36px 16px; }
  .projects-section { padding: 36px 16px 30px !important; }

  /* Lead section */
  .lead-section { padding: 36px 16px; }
  .lead-form { padding: 20px; }

  /* Office */
  .office-section { padding: 36px 16px; }
  .office-map { min-height: 240px; }
  .office-map iframe { min-height: 240px; }

  /* Footer */
  footer { padding: 36px 16px 16px; }

  /* Detail page */
  .detail-hero { min-height: 360px; }
  .detail-hero-title { font-size: 24px; }
  .detail-hp-value { font-size: 24px; }
  .detail-qb-items { grid-template-columns: 1fr; }
  .detail-qb-item:nth-child(2) { border-right: none; border-bottom: 1px solid var(--border); }
  .detail-amenity-grid { grid-template-columns: 1fr; }
  .detail-overview,
  .detail-highlights-section,
  .detail-location-section,
  .detail-amenities-section,
  .detail-legal-section,
  .detail-pricing-section,
  .detail-news-section,
  .detail-cta-section { padding: 48px 16px; }

  /* Listing page responsive */
  .plist-grid { grid-template-columns: 1fr; }
  .plist-hero { padding: 100px 16px 36px; }
  .plist-hero-title { font-size: 22px; }
  .plist-results { padding: 32px 16px 48px; }
  .plist-cta { padding: 48px 16px; }
}

/* =============================================
   GOOGLE TRANSLATE CUSTOM STYLES (Seamless Integration)
   ============================================= */
body {
  top: 0 !important;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

/* =============================================
   PARTNERS PAGE
   ============================================= */

/* Hero */
.partners-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E2229;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 100px 20px 40px;
}
.partners-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(194, 159, 104, 0.15) 0%, rgba(15, 17, 21, 0.9) 100%);
  z-index: 1;
}
.partners-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 48px;
  max-width: 700px;
}
.partners-hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin: 10px 0 12px;
  letter-spacing: -0.5px;
}
.partners-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* Hero Inline Stats */
.partners-hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.partners-hero-stat {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 14px;
  padding: 18px 28px;
  text-align: center;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.partners-hero-stat:hover {
  background: rgba(201,169,110,0.14);
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.15);
}
.partners-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(201,169,110,0.3);
}
.partners-hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Partners Section */
.partners-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.partners-section-alt {
  background: var(--white);
}
.partners-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 10px;
}
.partners-section-sub {
  font-size: 14px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* Partner Card */
.partner-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.partner-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.partner-card:hover::before {
  transform: scaleX(1);
}

/* Logo */
.partner-logo-wrap {
  width: 220px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.partner-card:hover .partner-logo-wrap {
  transform: scale(1.03);
}
.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px 16px;
}
.partner-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1a2744);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.partner-logo-placeholder.agency {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: var(--white);
}

/* Partner Info */
.partner-info {
  flex: 1;
  width: 100%;
}
.partner-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.partner-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.partners-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  padding: 64px 0;
}
.partners-cta-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.partners-cta-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.partners-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.partners-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.partners-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-hero-title {
    font-size: 28px;
  }
  .partners-hero-sub {
    font-size: 13px;
  }
  .partners-hero-content {
    padding: 48px 20px 36px;
  }
  .partners-hero-stats {
    gap: 10px;
  }
  .partners-hero-stat {
    padding: 14px 20px;
    min-width: 100px;
  }
  .partners-hero-stat-num {
    font-size: 26px;
  }
  .partners-hero-stat-label {
    font-size: 11px;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .partners-section {
    padding: 48px 0;
  }
  .partners-section-title {
    font-size: 24px;
  }
  .partners-cta {
    padding: 48px 0;
  }
  .partners-cta-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .partners-hero {
    min-height: 220px;
  }
  .partners-hero-title {
    font-size: 24px;
  }
  .partners-hero-stats {
    gap: 8px;
  }
  .partners-hero-stat {
    padding: 12px 16px;
    min-width: 90px;
    border-radius: 10px;
  }
  .partners-hero-stat-num {
    font-size: 22px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partner-card {
    flex-direction: row;
    text-align: left;
    padding: 16px;
    gap: 14px;
  }
  .partner-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .partner-logo-placeholder {
    font-size: 18px;
  }
}

