:root {
  --brand-navy: #0A192F;
  --brand-dark: #07111E;
  --brand-gold: #C5A880;
  --brand-gold-hover: #B39366;
  --brand-accent: #DFBA73;
  --brand-light-gold: #F5EFEB;
  --bs-body-font-family: 'Open Sans', sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F8F9FA;
  color: #2D3748;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Brand Backgrounds & Colors */
.bg-brand-navy {
  background-color: var(--brand-navy) !important;
}
.bg-brand-dark {
  background-color: var(--brand-dark) !important;
}
.text-brand-gold {
  color: var(--brand-gold) !important;
}
.text-brand-accent {
  color: var(--brand-accent) !important;
}
.border-brand-gold {
  border-color: rgba(197, 168, 128, 0.4) !important;
}

/* Gold gradients and text effects */
.gold-gradient {
  background: linear-gradient(135deg, #DFBA73 0%, #C5A880 50%, #9F7E4E 100%) !important;
  color: #07111E !important;
}
.gold-gradient:hover {
  opacity: 0.95;
  color: #07111E !important;
}
.gold-text-gradient {
  background: linear-gradient(135deg, #F3D088 0%, #C5A880 50%, #B38F54 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #DFBA73 0%, #C5A880 50%, #9F7E4E 100%);
  color: #07111E;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #E6C687 0%, #B39366 50%, #8E6E3F 100%);
  color: #07111E;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.35);
}
.btn-outline-gold {
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  font-weight: 600;
}
.btn-outline-gold:hover {
  background-color: rgba(197, 168, 128, 0.15);
  color: #FFFFFF;
  border-color: var(--brand-accent);
}

/* Navbar styling */
.navbar-vinhomes {
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
}
.nav-link-custom {
  color: #E2E8F0 !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s ease;
}
.nav-link-custom:hover {
  color: var(--brand-accent) !important;
}

/* Card & Glass styles */
.glass-card-navy {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 1.25rem;
}
.card-project {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
}
.card-project:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
  border-color: var(--brand-gold);
}
.card-product-img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-project:hover .card-product-img {
  transform: scale(1.04);
}

/* VIP Animations */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(197, 168, 128, 0.3); }
  50% { box-shadow: 0 0 25px rgba(197, 168, 128, 0.7); }
}
.pulse-vip {
  animation: pulseGlow 2.4s infinite;
}

/* Custom range styling */
input[type=range].form-range::-webkit-slider-thumb {
  background-color: var(--brand-gold);
}

/* Floating tool icons */
.floating-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
  text-decoration: none;
}
.floating-action-btn:hover {
  transform: scale(1.1);
}

/* Hero Banner & Background Lighting */
.hero-banner-cxl {
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  min-height: 720px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 -50px 70px rgba(7, 17, 30, 0.9), inset 0 50px 50px rgba(7, 17, 30, 0.8);
  overflow: hidden;
}
.hero-banner-cxl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(197, 168, 128, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-stat-badge {
  background: rgba(10, 25, 47, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.hero-stat-badge:hover {
  transform: translateY(-4px);
  border-color: var(--brand-accent);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.28);
}
.hero-glass-card {
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 1.25rem;
  position: relative;
  z-index: 2;
}
.gallery-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  height: 240px;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-img-wrap:hover img {
  transform: scale(1.06);
}

.btn-outline-gold {
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  font-weight: 600;
}
.btn-outline-gold:hover {
  background-color: rgba(197, 168, 128, 0.15);
  color: #FFFFFF;
  border-color: var(--brand-accent);
}


#breadcrumbBar {
  margin-top: 86px;
}


.flex-column {
    flex-direction: column !important;
}

.gallery-img-wrap {
      border-radius: 1rem;
      overflow: hidden;
      height: 240px;
    }
    .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-img-wrap:hover img {
      transform: scale(1.06);
    }
    /* Dual Gallery Sliders Styling */
    .gallery-slider-img {
      height: 400px;
      object-fit: cover;
      width: 100%;
    }
    @media (max-width: 768px) {
      .gallery-slider-img {
        height: 270px;
      }
    }
    .carousel-nav-btn {
      width: 44px;
      height: 44px;
      background: rgba(10, 25, 47, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(197, 168, 128, 0.55);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.9;
      transition: all 0.25s ease;
      color: #DFBA73;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    .carousel-nav-btn:hover {
      background: var(--brand-navy);
      border-color: var(--brand-accent);
      color: #FFFFFF;
      opacity: 1;
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
    }
    .gallery-caption-overlay {
      background: linear-gradient(to top, rgba(7, 17, 30, 0.94) 0%, rgba(7, 17, 30, 0.6) 65%, transparent 100%);
    }