/* ==========================================================================
   BHUSHAN REALTORS - CUSTOM DESIGN SYSTEM (NO CSS FRAMEWORK)
   Pure CSS3 with Flexbox, CSS Grid, Custom Properties & Modern Responsive Layouts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Martel:wght@600;700;800&family=Noto+Serif+Devanagari:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Rozha+One&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

/* --- 1. CSS Custom Properties (Theme Tokens) --- */
:root {
  /* Brand Palettes */
  --c-navy-dark: #071221;
  --c-navy: #0b1a30;
  --c-navy-light: #162a45;
  --c-navy-muted: #223755;
  
  --c-gold: #c89d3c;
  --c-gold-hover: #b38827;
  --c-gold-dark: #9e6b20;
  --c-gold-light: #fff8e8;
  --c-gold-border: #f0debb;
  --c-gold-gradient: linear-gradient(135deg, #d4af37 0%, #c89d3c 50%, #ad7f1a 100%);
  --c-orange-gradient: linear-gradient(90deg, #d38106 0%, #e69110 50%, #f5a623 100%);
  
  /* Section & Card Themes */
  --c-card-yellow: #fff9e6;
  --c-card-yellow-border: #f7e7ba;
  --c-card-yellow-hover: #fff4d1;
  
  --c-card-blue: #f0f6fd;
  --c-card-blue-border: #dbe8f7;
  --c-card-blue-hover: #e3f0fc;
  
  /* Text & Surfaces */
  --c-white: #ffffff;
  --c-bg-light: #f8fafc;
  --c-bg-cream: #faf7f2;
  --c-text-main: #1e293b;
  --c-text-muted: #64748b;
  --c-text-light: #94a3b8;
  --c-border: #e2e8f0;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cinzel', Georgia, serif;
  
  /* Spacings & Layout */
  --max-width: 1260px;
  --header-height: 85px;
  --topbar-height: 36px;
  
  /* Radii & Shadows */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;
  
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(11, 26, 48, 0.08), 0 4px 6px -4px rgba(11, 26, 48, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 26, 48, 0.12), 0 8px 10px -6px rgba(11, 26, 48, 0.06);
  --shadow-gold: 0 10px 20px -3px rgba(200, 157, 60, 0.35);
  
  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg-light);
  color: var(--c-text-main);
  line-height: 1.6;
}

p,
.about-desc-p,
.section-desc,
.project-detail-desc,
.blog-body p,
.service-desc,
.service-desc-ref,
.value-p,
.career-desc,
.spec-card-text,
.exact-about-text,
.detail-overview-p,
.contact-desc {
  text-align: justify;
  text-justify: inter-word;
}

img, video, svg, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Aspect Ratio Containers */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio, 56.25%);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ratio-16x9 {
  --aspect-ratio: 56.25%;
}

.ratio-4x3 {
  --aspect-ratio: 75%;
}

.ratio-1x1 {
  --aspect-ratio: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast), opacity var(--trans-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --- 3. Grid & Flexbox Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-fluid {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.5rem; }
.gap-6 { gap: 2rem; }
.gap-8 { gap: 3rem; }

/* Spacing Helpers */
.m-0 { margin: 0; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }
.mt-10 { margin-top: 3.75rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 3.75rem; }

.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.5rem; }
.p-6 { padding: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-6 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }
.py-10 { padding-top: 5.5rem; padding-bottom: 5.5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-6 { padding-left: 2rem; padding-right: 2rem; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.15; }

.text-navy { color: var(--c-navy); }
.text-navy-dark { color: var(--c-navy-dark); }
.text-gold { color: var(--c-gold); }
.text-white { color: var(--c-white); }
.text-muted { color: var(--c-text-muted); }
.text-light { color: var(--c-text-light); }
.text-white-50 { color: rgba(255, 255, 255, 0.7); }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Borders & Rounded Corners */
.rounded-sm { border-radius: var(--r-sm); }
.rounded-md { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); }
.rounded-full { border-radius: var(--r-full); }

/* Visibility */
.hidden { display: none !important; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Hexagon Texture Backgrounds */
.bg-hex-light {
  position: relative;
  background-color: #f8fafc !important;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg') !important;
  background-repeat: repeat !important;
  background-size: auto, 70px 121px !important;
  background-position: center !important;
}

/* --- 4. Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-md);
  transition: all var(--trans-base);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--r-md);
}

.btn-gold {
  background-color: var(--c-gold);
  color: var(--c-white);
  box-shadow: 0 4px 12px rgba(200, 157, 60, 0.3);
}
.btn-gold:hover {
  background-color: var(--c-gold-hover);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-navy {
  background-color: var(--c-navy);
  color: var(--c-white);
}
.btn-navy:hover {
  background-color: var(--c-navy-light);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 26, 48, 0.25);
}

.btn-dark-navy {
  background-color: var(--c-navy-dark);
  color: var(--c-white);
}
.btn-dark-navy:hover {
  background-color: var(--c-navy);
  color: var(--c-gold);
}

.btn-outline-navy {
  border: 1.5px solid var(--c-navy);
  color: var(--c-navy);
}
.btn-outline-navy:hover {
  background-color: var(--c-navy);
  color: var(--c-white);
}

.btn-outline-gold {
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-outline-gold:hover {
  background-color: var(--c-gold);
  color: var(--c-white);
}

.btn-pill {
  border-radius: var(--r-full);
}

.badge-gold {
  display: inline-block;
  background-color: var(--c-gold-light);
  color: var(--c-gold-dark);
  border: 1px solid var(--c-gold-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 5. Navigation Bar & Topbar (Exact Reference Image Style) --- */
.site-topbar-exact {
  background-color: #1e242b;
  color: #ffffff;
  font-size: clamp(0.66rem, 0.74vw, 0.78rem);
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-exact .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.topbar-contacts-group {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 0.7vw, 1.1rem);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar-contacts-group::-webkit-scrollbar {
  display: none;
}

.topbar-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
  white-space: nowrap;
  font-size: inherit;
  flex-shrink: 0;
}

.topbar-contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.topbar-contact-item a:hover {
  color: var(--c-gold);
}

.topbar-contact-item .sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.15rem;
}

.text-accent-brown {
  color: #c89d3c;
  font-size: 0.95rem;
}

.topbar-socials-exact {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.topbar-icon-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #ffffff;
  color: #1e242b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  transition: transform var(--trans-fast), background-color var(--trans-fast), color var(--trans-fast);
}

.topbar-icon-btn:hover {
  background-color: var(--c-gold);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Main Navbar */
.site-main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #edf2f7;
  padding: 0.35rem 0;
}

.nav-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.1;
  padding: 2px 0;
}

.nav-brand-motto {
  font-family: 'Noto Serif Devanagari', 'Martel', 'Tiro Devanagari Hindi', 'Rozha One', serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #b17431;
  letter-spacing: 0.04em;
  margin-bottom: -2px;
  text-align: center;
  display: block;
  white-space: nowrap;
  line-height: 1.2;
  transition: color var(--trans-fast);
}

.nav-brand-link:hover .nav-brand-motto {
  color: #8c551d;
}

.nav-brand-img {
  height: 68px;
  max-height: 74px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--trans-fast);
}

.nav-brand-link:hover .nav-brand-img {
  transform: scale(1.02);
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0;
  line-height: 1;
  transition: color var(--trans-fast);
}

.nav-item-link:hover,
.nav-item-link.active {
  color: var(--c-gold);
}

.nav-caret {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item-dropdown:hover .nav-caret,
.nav-item-dropdown.open .nav-caret {
  transform: rotate(180deg);
  color: var(--c-gold);
}

/* Exact Brand Dark Navy Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #0b1a38;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  padding: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateY(6px);
  z-index: 1001;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  pointer-events: none;
}

/* Invisible Hover Bridge to prevent cursor loss */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
  z-index: 1;
}

.nav-dropdown-menu::before {
  display: none;
}

.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  line-height: 1.35;
  text-align: left;
}

.dropdown-icon-box,
.dropdown-arrow {
  display: none !important;
}

.dropdown-text {
  display: block;
}

.dropdown-link:hover {
  background-color: #162f5d;
  color: #ffffff;
}

/* Show on Hover OR when .open is toggled by click */
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item-dropdown:hover .nav-caret,
.nav-item-dropdown.open .nav-caret {
  transform: rotate(180deg);
  color: var(--c-navy-dark);
}

/* Download App Button */
.nav-cta-wrapper {
  flex-shrink: 0;
}

.btn-download-app-exact {
  background-color: #1e242b;
  color: #ffffff;
  padding: 0.6rem 1.35rem;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.btn-download-app-exact i {
  font-size: 1.15rem;
}

.btn-download-app-exact:hover {
  background-color: var(--c-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 157, 60, 0.35);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--c-navy);
  cursor: pointer;
}

@media (max-width: 1200px) {
  .nav-links-list {
    gap: 0.85rem;
  }
  .nav-item-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 991px) {
  .site-topbar-exact {
    display: none !important;
  }
  .nav-links-list,
  .nav-cta-wrapper {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
  }
  .nav-brand-img {
    height: 52px;
    max-height: 56px;
  }
  .nav-brand-motto {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}

/* Tablet Landscape (992px to 1199px): Single-line Compact Navigation */
@media (max-width: 1199px) and (min-width: 992px) {
  .nav-links-list {
    gap: 0.55rem;
  }
  .nav-item-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.35rem;
  }
  .btn-download-app-exact {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }
  .nav-brand-img {
    height: 58px;
    max-height: 60px;
  }
  .nav-brand-motto {
    font-size: 0.82rem;
  }
}

/* Mobile Drawer (No offscreen bleed, smooth transform + visibility) */
.mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -350px !important;
  width: 320px !important;
  max-width: 88vw !important;
  height: 100vh !important;
  background-color: #ffffff !important;
  z-index: 2000 !important;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15) !important;
  padding: 1.75rem 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s !important;
  overflow-y: auto !important;
  visibility: hidden !important;
}

.mobile-drawer.open {
  right: 0 !important;
  visibility: visible !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Direct Contact Chip */
.mob-contact-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.mob-contact-chip:hover,
.mob-contact-chip:active {
  background-color: #fff9e6;
  border-color: var(--c-gold);
}

.mob-contact-chip i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mob-nav-item {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.25rem;
}

.mob-nav-link-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.6rem;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.mob-nav-link-direct:active {
  background: #f8fafc;
}

.mob-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.6rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-navy);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease;
}

.mob-submenu-trigger:active {
  background: #f8fafc;
}

.mob-caret {
  font-size: 1.1rem;
  color: #94a3b8;
  transition: transform 0.25s ease;
}

.mob-submenu-list {
  display: none;
  list-style: none;
  padding: 0.4rem 0.35rem;
  margin: 0.25rem 0 0.65rem 0.25rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid var(--c-gold);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.mob-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px; /* WCAG 44px touch target */
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 3px;
  transition: all 0.2s ease;
}

.mob-submenu-link:active,
.mob-submenu-link:hover {
  background: rgba(200, 157, 60, 0.15);
  color: var(--c-navy);
  transform: translateX(4px);
}

.mob-sub-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mob-sub-icon {
  font-size: 1.15rem;
  color: var(--c-gold);
  flex-shrink: 0;
}

.mob-sub-arrow {
  font-size: 0.85rem;
  color: #cbd5e1;
  transition: transform 0.2s ease;
}

.mob-submenu-link:hover .mob-sub-arrow,
.mob-submenu-link:active .mob-sub-arrow {
  color: var(--c-gold);
  transform: translateX(2px);
}

/* --- 6. Hero Section & Search Filter Bar (Reference Style) --- */
.hero-custom-section {
  position: relative;
  min-height: 520px;
  background: #0b1a30;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 12rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-custom-bg-img,
.hero-custom-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 33, 0.3) 0%, rgba(7, 18, 33, 0.75) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-quote-box {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
}

.hero-quote-title {
  font-family: 'Playfair Display', var(--font-serif);
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f7dfa5;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 0 30px rgba(200, 157, 60, 0.4);
  line-height: 1.2;
}

/* Floating AI bubble in Hero */
.hero-floating-bubble {
  position: absolute;
  top: 30%;
  right: 6%;
  background: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: var(--r-lg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  font-size: 0.85rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 250px;
  animation: floatAnim 4s ease-in-out infinite;
}

.hero-floating-bubble .bubble-title {
  font-weight: 700;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-floating-bubble .bubble-options {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-floating-bubble .bubble-btn {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  transition: all var(--trans-fast);
}

.hero-floating-bubble .bubble-btn:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Vertical Side Tab: Talk to our Expert */
.vertical-expert-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  background-color: var(--c-navy-dark);
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 1rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-top-left-radius: var(--r-md);
  border-bottom-left-radius: var(--r-md);
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  z-index: 998;
  cursor: pointer;
  transition: background-color var(--trans-fast), padding-right var(--trans-fast);
}

.vertical-expert-tab:hover {
  background-color: var(--c-gold);
  color: #ffffff;
  padding-right: 0.75rem;
}

/* Property Search Bar (Matching Reference) */
.hero-filter-bar {
  background: var(--c-navy);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr 160px;
  gap: 1rem;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

.filter-select, .filter-input {
  background: var(--c-gold);
  color: var(--c-navy-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-sm);
  width: 100%;
  border: none;
  cursor: pointer;
}

.filter-select option {
  background: #ffffff;
  color: var(--c-text-main);
  font-weight: 500;
}

.filter-dual-input {
  display: flex;
  gap: 0.4rem;
}

.filter-dual-input .filter-input {
  width: 50%;
}

.filter-dual-input .filter-input::placeholder {
  color: rgba(11, 26, 48, 0.7);
  font-weight: 600;
}

.btn-filter-search {
  background: #ffffff;
  color: var(--c-navy);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: var(--r-sm);
  width: 100%;
  height: 38px;
  text-align: center;
  transition: all var(--trans-base);
  border: 1px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-filter-search:hover {
  background: var(--c-gold);
  color: #ffffff;
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200, 157, 60, 0.35);
}

/* --- 7. About Us Section (4-Grid Images with Monogram) --- */
.about-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.about-collage-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  border-radius: var(--r-lg);
}

.about-img-box {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.about-img-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img-box:hover img {
  transform: scale(1.05);
}

.about-center-logo-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 3px solid #0b1a30;
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(11, 26, 48, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.9);
  z-index: 10;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.about-center-logo-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 16px 36px rgba(11, 26, 48, 0.35), 0 0 0 4px var(--c-gold);
}

.about-center-logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.section-heading-sm,
.section-main-title {
  font-family: var(--font-main);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--c-navy);
  text-align: center;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
}

.about-story-col .section-main-title {
  text-align: left;
}

.about-desc-p {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* --- 8. "Why Bhushan Realtors ?" Cards --- */
.why-us-section {
  position: relative;
  padding: 5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.why-card {
  background-color: var(--c-card-yellow);
  border: 1px solid var(--c-card-yellow-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--trans-base);
  height: 100%;
}

.why-icon-wrap {
  width: 100%;
  height: 120px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration-img {
  max-height: 110px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: transform var(--trans-fast);
}

.why-card:hover .why-illustration-img {
  transform: scale(1.08) translateY(-2px);
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* --- 9. "OUR SERVICES" Section (White Cards with Golden Bottom Arch) --- */
.services-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.section-subtitle-center {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-top: 0;
  margin-bottom: 3.5rem;
}

.service-card-ref {
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  padding: 2.25rem 1.6rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 26, 48, 0.04);
}

.service-card-ref:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 26, 48, 0.08);
  border-color: rgba(211, 129, 6, 0.25);
}

.service-card-ref::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: #d38106;
  border-radius: 4px 4px 0 0;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.service-card-ref:hover::after {
  width: 90px;
  background: #e69110;
  box-shadow: 0 0 10px rgba(211, 129, 6, 0.4);
}

.service-illustration-wrap {
  width: 100%;
  height: 120px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-illustration-img {
  max-width: 110px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card-ref:hover .service-illustration-img {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 12px 22px rgba(211, 129, 6, 0.22));
}

.service-title-ref {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b1a30;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-desc-ref {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-btn-wrap {
  margin-top: auto;
  width: 100%;
}

.btn-service-action {
  background-color: #0b1a38;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  width: 100%;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-service-action:hover {
  background-color: #d38106;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(211, 129, 6, 0.35);
  transform: translateY(-1px);
}

/* --- 10. App Promotion Section --- */
.app-promo-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.app-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.app-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-main);
}

.app-checklist-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--c-gold);
  margin-top: 6px;
  flex-shrink: 0;
}

.app-phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phone-mockup-img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* --- 11. Luxury Golden CTA Banner Strip --- */
.cta-banner-strip {
  background: linear-gradient(135deg, #d38106 0%, #e69110 50%, #f5a623 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 16px 36px rgba(211, 129, 6, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.15);
  margin: 4rem auto;
  position: relative;
  overflow: hidden;
}

.cta-banner-inline {
  margin: 1.75rem 0 0 0;
  padding: 1.25rem 1.5rem;
  gap: 1.25rem;
  box-shadow: 0 12px 28px rgba(211, 129, 6, 0.25);
}

.cta-banner-inline .cta-banner-title {
  font-size: 1.2rem;
}

.cta-banner-inline .cta-banner-sub {
  font-size: 0.82rem;
}

.cta-banner-inline .btn-cta-call {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

.cta-banner-visual {
  flex-shrink: 0;
}

.cta-banner-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: block;
}

.cta-banner-content {
  flex-grow: 1;
  color: #ffffff;
}

.cta-banner-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(11, 26, 48, 0.3);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.cta-banner-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  line-height: 1.25;
}

.cta-banner-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.cta-banner-action {
  flex-shrink: 0;
}

.btn-cta-call {
  background: #0b1a30;
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 26, 48, 0.3);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cta-call:hover {
  background: #ffffff;
  color: #0b1a30;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 157, 60, 0.2);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.btn-cta-call:hover .btn-cta-icon {
  background: var(--c-gold);
  color: #ffffff;
}

.btn-cta-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  line-height: 1;
}

.btn-cta-number {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .cta-banner-strip {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }
  .cta-banner-content {
    text-align: center;
  }
  .btn-cta-call {
    width: 100%;
    justify-content: center;
  }
}

/* --- 12. "How It Works" 6-Step Workflow (Brand Dark Blue) --- */
.how-it-works-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #0b1a38 0%, #071329 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.how-it-works-section .section-main-title {
  color: #ffffff;
}

.how-it-works-section .section-subtitle-center {
  color: rgba(255, 255, 255, 0.75);
}

.steps-timeline-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  margin-bottom: 3.5rem;
}

.steps-timeline-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, rgba(211, 129, 6, 0.6) 0, rgba(211, 129, 6, 0.6) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-node-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0d2249;
  border: 2px solid rgba(211, 129, 6, 0.5);
  color: #ffc266;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: all var(--trans-base);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-node.active .step-node-circle,
.step-node:hover .step-node-circle {
  background: var(--c-gold);
  color: #ffffff;
  border-color: #f5a623;
  transform: scale(1.18);
  box-shadow: 0 0 20px rgba(211, 129, 6, 0.55);
}

.step-node-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--trans-fast);
}

.step-node.active .step-node-label,
.step-node:hover .step-node-label {
  color: #ffc266;
}

.step-active-card {
  background: #ffffff;
  border-radius: var(--r-lg);
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  color: var(--c-text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.step-illustration-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-illustration-box img {
  max-height: 240px;
  object-fit: contain;
}

.step-detail-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.step-detail-desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* --- 13. "ACHIEVEMENTS" & Dream Building Section --- */
.achievements-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card-gold {
  background: #ffffff;
  border: 1.5px solid var(--c-gold-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--trans-base);
}

.stat-card-gold:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.stat-card-icon {
  font-size: 2.4rem;
  color: var(--c-gold);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-top: 3px;
}

.achievement-photo-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 0;
  position: relative;
}

.achievement-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .achievement-photo-box {
    height: 380px;
    min-height: 340px;
  }
}

/* --- 14. "Packages" (3 Cards with Accordions) --- */
.packages-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.package-card {
  background: #ffffff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-base);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.package-header {
  background-color: var(--c-navy-dark);
  color: #ffffff;
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.package-accordion-list {
  padding: 0.5rem 0;
  flex: 1;
}

.package-accordion-item {
  border-bottom: 1px solid #f1f5f9;
}

.package-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-navy);
  cursor: pointer;
  background: #ffffff;
  transition: background-color var(--trans-fast);
}

.package-accordion-toggle:hover {
  background-color: var(--c-bg-light);
}

.package-accordion-content {
  display: none;
  padding: 0.5rem 1.25rem 0.75rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  background-color: #fafbfc;
  border-top: 1px solid #f1f5f9;
}

.package-accordion-content.open {
  display: block;
}

.package-footer {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  background-color: #fafbfc;
  border-top: 1px solid #f1f5f9;
}

.package-footer .footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 0.6rem;
}

.btn-package-build {
  background: var(--c-navy-dark);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 2rem;
  border-radius: var(--r-sm);
  width: 100%;
  transition: all var(--trans-base);
}

.btn-package-build:hover {
  background: var(--c-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- 15. Calculator Section (Tabs & Form) --- */
.calculator-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.calc-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.calc-tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
  background: #ffffff;
  color: var(--c-navy);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.calc-tab-btn.active {
  background: var(--c-navy);
  color: #ffffff;
  border-color: var(--c-navy);
}

.calc-form-container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid var(--c-border);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(11, 26, 48, 0.06);
}

.calc-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 140px;
  gap: 1.25rem;
  align-items: end;
}

.calc-input-group {
  display: flex;
  align-items: stretch;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  transition: all var(--trans-fast);
}

.calc-input-group:focus-within {
  border-color: var(--c-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(200, 157, 60, 0.15);
}

.calc-input-prefix {
  background: #eef2f6;
  color: var(--c-navy);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1.5px solid #e2e8f0;
  user-select: none;
  flex-shrink: 0;
}

.calc-input-field {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  outline: none;
  height: 100%;
}

.calc-select,
.calc-input-static {
  width: 100%;
  height: 48px;
  padding: 0 0.85rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  outline: none;
  transition: all var(--trans-fast);
}

.calc-select:focus {
  border-color: var(--c-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(200, 157, 60, 0.15);
}

.calc-input-static {
  background: #f1f5f9;
  cursor: default;
}

.calc-result-box {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #0b1a30 0%, #102544 100%);
  color: #ffffff;
  border-radius: 12px;
  display: none;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(11, 26, 48, 0.2);
  border: 1px solid rgba(200, 157, 60, 0.3);
}

.calc-result-box.show {
  display: flex;
}

.calc-res-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.calc-res-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.calc-res-val-gold {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.2;
}

.calc-res-val-white {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.calc-res-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

@media (max-width: 860px) {
  .calc-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calc-form-grid .filter-group:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .calc-tabs-bar {
    flex-direction: column;
    width: 100%;
  }
  .calc-tab-btn {
    width: 100%;
    text-align: center;
  }
  .calc-form-grid {
    grid-template-columns: 1fr;
  }
  .calc-form-grid .filter-group:last-child {
    grid-column: span 1;
  }
  .calc-result-box {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* --- 16. "Our Recent Projects" Section --- */
.recent-projects-dark {
  position: relative;
  padding: 5.5rem 0;
  background-color: #0b131e;
  background-image: 
    linear-gradient(180deg, rgba(7, 18, 33, 0.75) 0%, rgba(7, 18, 33, 0.45) 50%, rgba(7, 18, 33, 0.85) 100%),
    url('images/hex-pattern.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.projects-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.projects-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
}

.projects-dynamic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
}

.project-card-custom {
  background: #ffffff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 390px;
  flex: 0 1 390px;
  margin: 0;
  color: var(--c-text-main);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  display: flex;
  flex-direction: column;
}

.project-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-card-img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.project-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card-custom:hover .project-card-img-wrap img {
  transform: scale(1.05);
}

.project-rera-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff7700;
  color: #fff;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: var(--r-sm);
  letter-spacing: 0.05em;
}

.project-card-body {
  padding: 1.5rem;
  text-align: center;
}

.project-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 0.3rem;
  text-align: center;
}

.project-card-location {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-align: center;
}

.project-specs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-navy);
}

.project-spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.project-card-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* --- 17. Testimonials & Bank Partners --- */
.testimonials-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.testimonial-card-ref {
  background: #ffffff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

.testimonial-quote-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.testimonial-author-box {
  background-color: var(--c-navy);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: #f7dfa5;
  margin-left: auto;
}

/* Bank Partners */
.bank-partners-section {
  position: relative;
  padding: 4.5rem 0 5rem;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.bank-logo-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--trans-base);
  height: 90px;
}

.bank-logo-card img {
  max-height: 50px;
  object-fit: contain;
}

.bank-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--c-gold);
}

/* --- 17b. App Promotion Section (Brand Dark Blue) --- */
.app-promo-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #0b1a38 0%, #071329 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.app-promo-section .text-navy {
  color: #ffffff !important;
}

.app-promo-section .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.app-checklist {
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.app-checklist-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(211, 129, 6, 0.7);
}

.btn-app-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #071221 !important;
  background: linear-gradient(135deg, #f3ca52 0%, #c89d3c 50%, #ab7c1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(200, 157, 60, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.btn-app-promo-cta i {
  font-size: 1.35rem;
  color: #071221;
  transition: transform 0.3s ease;
}

.btn-app-promo-cta:hover {
  background: linear-gradient(135deg, #ffd768 0%, #e0b04a 50%, #be8c28 100%);
  color: #000000 !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(200, 157, 60, 0.65), 0 0 20px rgba(243, 202, 82, 0.4);
}

.btn-app-promo-cta:hover i {
  transform: scale(1.15) rotate(-5deg);
}

.btn-app-promo-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.app-phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.app-phone-mockup-wrapper::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 129, 6, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.app-phone-mockup-img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.app-phone-mockup-wrapper:hover .app-phone-mockup-img {
  transform: translateY(-8px) scale(1.02);
}

/* --- 18. Skyline Silhouette & Footer --- */
.skyline-divider {
  width: 100%;
  height: 100px;
  background-color: var(--c-navy-dark);
  background-image: radial-gradient(ellipse at bottom, rgba(200, 157, 60, 0.2) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.skyline-svg-art {
  width: 100%;
  height: 100%;
  fill: #060e1a;
}

.site-footer {
  background-color: var(--c-navy-dark);
  color: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
  color: var(--c-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.footer-contact-icon {
  font-size: 1.25rem;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- 19. Modals & Dialogs (Custom Pure CSS) --- */
.custom-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 33, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.custom-modal-box {
  background: #ffffff;
  border-radius: var(--r-lg);
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.custom-modal-backdrop.open .custom-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--c-text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--c-navy);
}

.form-group-custom {
  margin-bottom: 1.25rem;
}

.form-label-custom {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.4rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  background-color: #ffffff;
  color: var(--c-text-main);
  transition: border-color var(--trans-fast);
}

.form-control-custom:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(200, 157, 60, 0.15);
}

/* --- 20. Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .steps-timeline-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  /* Hide fixed vertical tab on mobile & tablets to eliminate screen obstruction */
  .vertical-expert-tab {
    display: none !important;
  }
}

@media (max-width: 768px) {
  
  /* Global Container Fitting */
  .container,
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .about-main-card,
  .content-card-custom {
    padding: 1.25rem 0.85rem !important;
    border-radius: 14px !important;
  }
  .stat-metric-card {
    padding: 0.9rem 0.4rem !important;
    border-radius: 12px !important;
  }
  .csr-pillar-card {
    padding: 1.15rem 0.85rem !important;
    border-radius: 14px !important;
  }
  .detail-fac-spec-container {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
    gap: 1.5rem !important;
  }
  .detail-spec-badge-group {
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .detail-spec-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
  }
  .detail-plan-tabs {
    gap: 0.5rem !important;
  }
  .detail-plan-tab-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
  }

  /* 1. HERO SECTION: Video on top, Form directly BELOW the video */
  .hero-custom-section {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
    background: #0b1a30 !important;
    overflow: visible !important;
  }

  /* Video Stage: completely open, 100% visible, no form overlapping */
  .hero-video-stage {
    position: relative !important;
    width: 100% !important;
    height: 56.25vw !important; /* Pure 16:9 Cinema Aspect Ratio */
    min-height: 220px !important;
    max-height: 380px !important;
    overflow: hidden !important;
    background: #0b1a30 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .hero-video-stage .hero-custom-bg-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    z-index: 1 !important;
  }

  .hero-video-stage .hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(7, 18, 33, 0.05) 0%, rgba(7, 18, 33, 0.25) 100%) !important;
    z-index: 2 !important;
  }

  /* Form Container: placed outside the video, directly BELOW the video */
  .hero-content-wrapper {
    position: relative !important;
    width: 100% !important;
    padding: 1.25rem 1rem 0 1rem !important;
    margin-top: 0 !important;
    z-index: 5 !important;
  }

  .hero-filter-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 1rem !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    background: #112340 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
    border-radius: var(--r-md) !important;
  }

  .filter-group-btn {
    grid-column: span 2 !important;
  }

  .btn-filter-search {
    height: 42px !important;
    font-size: 0.92rem !important;
  }

  /* Header & Navigation */
  .site-topbar,
  .site-topbar-exact {
    display: none !important;
  }
  .nav-menu,
  .nav-links-list,
  .nav-cta-wrapper {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
  }

  /* Section Titles - 100% Uniform Across All Sections */
  .section-main-title,
  .section-heading-sm,
  .projects-section-title {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: var(--c-navy) !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.015em !important;
    text-align: center !important;
  }
  .projects-section-title {
    color: #ffffff !important;
  }
  .section-subtitle-center {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    display: block !important;
    text-align: center !important;
  }

  /* Grids & Layouts */
  .grid-2, .grid-3, .grid-4, .grid-6 {
    grid-template-columns: 1fr !important;
  }

  /* 2. ABOUT US SECTION (Center aligned on mobile) */
  .about-collage-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
    margin-bottom: 1.75rem !important;
  }
  .about-img-box img {
    height: 125px !important;
  }
  .about-center-logo-badge {
    padding: 0.4rem 0.8rem !important;
    border-width: 2px !important;
  }
  .about-center-logo-badge img {
    height: 24px !important;
  }
  .about-story-col {
    text-align: center !important;
  }
  .about-story-col .section-heading-sm {
    text-align: center !important;
  }
  .about-desc-p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.85rem !important;
    text-align: center !important;
  }
  .about-story-col .btn {
    display: inline-flex !important;
    margin: 0.5rem auto 0 auto !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* 3. OUR SERVICES */
  .services-section .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .service-card-ref {
    padding: 1.5rem 1.25rem !important;
    border-radius: 14px !important;
  }
  .service-illustration-wrap {
    height: 95px !important;
    margin-bottom: 1rem !important;
  }
  .service-illustration-img {
    max-height: 90px !important;
  }
  .service-title-ref {
    font-size: 1.05rem !important;
  }
  .service-desc-ref {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
  }

  /* 4. RECENT PROJECTS */
  .projects-dynamic-grid {
    gap: 1.5rem !important;
  }
  .project-card-custom {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    border-radius: 14px !important;
  }
  .project-card-img-wrap {
    height: 240px !important;
  }
  .project-card-body {
    padding: 1.25rem 1rem !important;
  }
  .project-specs-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  .project-card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }
  .project-card-actions .btn {
    width: 100% !important;
    padding: 0.55rem 0.5rem !important;
    font-size: 0.82rem !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* 5. HOW IT WORKS (Timeline) */
  .steps-timeline-bar::before {
    display: none !important;
  }
  .steps-timeline-bar {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem 0.5rem !important;
    margin-bottom: 2rem !important;
  }
  .step-node-circle {
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  .step-node-label {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }
  .step-active-card {
    grid-template-columns: 1fr !important;
    padding: 1.35rem 1rem !important;
    gap: 1.25rem !important;
    border-radius: 14px !important;
    text-align: center !important;
  }
  .step-illustration-box img {
    max-height: 170px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 6. CALCULATORS */
  .calc-tabs-bar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .calc-tab-btn {
    flex: 1 1 45% !important;
    padding: 0.55rem 0.6rem !important;
    font-size: 0.78rem !important;
    text-align: center !important;
  }
  .calc-form-container {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .calc-form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .calc-result-box {
    padding: 1.25rem 1rem !important;
    margin-top: 1.25rem !important;
    border-radius: 12px !important;
  }
  .calc-result-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* 7. MILESTONES & ACHIEVEMENTS */
  .stats-grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
    margin-top: 1.25rem !important;
  }
  .stat-card-gold {
    padding: 0.85rem 0.6rem !important;
    gap: 0.6rem !important;
    border-radius: 10px !important;
  }
  .stat-card-icon {
    font-size: 1.7rem !important;
  }
  .stat-number {
    font-size: 1.25rem !important;
  }
  .stat-label {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
  }

  /* 8. GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .gallery-card {
    height: 180px !important;
    border-radius: 12px !important;
  }

  /* 9. TESTIMONIALS */
  .testimonial-card-ref {
    padding: 1.35rem 1.15rem !important;
    border-radius: 14px !important;
  }
  .testimonial-quote-text {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }
  .testimonial-avatar {
    width: 46px !important;
    height: 46px !important;
  }

  /* 10. BANK PARTNERS */
  .bank-partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
    margin-bottom: 2rem !important;
  }
  .bank-logo-card {
    height: 72px !important;
    padding: 0.5rem !important;
    border-radius: 10px !important;
  }
  .bank-logo-card img {
    max-height: 40px !important;
    max-width: 85% !important;
    object-fit: contain !important;
  }

  /* 11. APP PROMO SECTION */
  .app-phone-mockup-wrapper {
    margin-top: 1.5rem !important;
    text-align: center !important;
  }
  .app-phone-mockup-img {
    max-height: 250px !important;
    margin: 0 auto !important;
  }
  .app-checklist {
    margin-bottom: 1.5rem !important;
  }
  .app-checklist-item {
    font-size: 0.84rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* 12. CONTACT CTA SECTION */
  .contact-cta-card {
    padding: 1.5rem 1rem !important;
    border-radius: 18px !important;
  }
  .contact-channels-list {
    gap: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }
  .contact-channel-item {
    gap: 0.75rem !important;
  }
  .channel-icon-circle {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.05rem !important;
  }
  .channel-label {
    font-size: 0.7rem !important;
  }
  .channel-value {
    font-size: 0.84rem !important;
  }
  .contact-cta-form-box {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
    margin-top: 1.5rem !important;
  }
  .form-group-custom {
    margin-bottom: 0.75rem !important;
  }
  .form-label-custom {
    font-size: 0.8rem !important;
  }
  .form-control-custom {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.85rem !important;
  }

  /* 13. LUXURY BANNER STRIP */
  .cta-banner-strip {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important;
    gap: 1.25rem !important;
    margin: 2.5rem auto !important;
    border-radius: 14px !important;
  }
  .cta-banner-title {
    font-size: 1.2rem !important;
  }
  .cta-banner-sub {
    font-size: 0.82rem !important;
  }
  .btn-cta-call {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 1.25rem !important;
  }

  /* 14. FOOTER */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  .exact-visitors-wrap {
    margin-top: 1.25rem !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .hero-custom-section {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
  }
  .hero-video-stage {
    height: 56.25vw !important;
    min-height: 200px !important;
  }
  .hero-content-wrapper {
    margin-top: 0 !important;
    padding: 1rem 0.75rem 0 !important;
  }
  .hero-filter-bar {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    margin: 0 auto !important;
  }
  .filter-group-btn {
    grid-column: span 1 !important;
  }
  .section-main-title,
  .section-heading-sm,
  .projects-section-title {
    font-size: 1.6rem !important;
  }
  .about-main-card,
  .content-card-custom {
    padding: 1rem 0.6rem !important;
    border-radius: 12px !important;
  }
  .stat-metric-card {
    padding: 0.8rem 0.35rem !important;
    border-radius: 10px !important;
  }
  .csr-pillar-card {
    padding: 0.95rem 0.75rem !important;
    border-radius: 12px !important;
  }
  .detail-fac-spec-container {
    padding: 1rem 0.75rem !important;
    border-radius: 12px !important;
  }
  .detail-spec-badge-group {
    justify-content: center !important;
    gap: 0.45rem !important;
  }
  .detail-spec-badge {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.78rem !important;
  }
  .detail-plan-tabs {
    gap: 0.4rem !important;
  }
  .detail-plan-tab-btn {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- 21. AI Chatbot Widget Styles --- */
.btn-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-navy-dark);
  border: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: all var(--trans-base);
}

.btn-chat-bubble:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--c-gold);
}

.chat-badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chat-widget-panel {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
  border: 1px solid var(--c-border);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget-panel.active,
.chat-widget-panel.open {
  display: flex !important;
}

@media (max-width: 576px) {
  .chat-widget-panel {
    bottom: 80px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    height: calc(100vh - 100px) !important;
    max-height: 540px !important;
    border-radius: 16px !important;
  }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header-bar {
  background: var(--c-navy-dark);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 1.2rem;
}

.status-indicator-green {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-close-btn {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.chat-close-btn:hover {
  color: #fff;
}

.chat-messages-body {
  flex: 1;
  padding: 1rem 0.95rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #f8fafc;
  scroll-behavior: smooth;
}

/* Custom sleek scrollbar */
.chat-messages-body::-webkit-scrollbar {
  width: 5px;
}
.chat-messages-body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.chat-messages-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Chat bubble row wrapper */
.chat-bubble {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  width: 100%;
}

.chat-bubble.user-row {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

/* Avatars */
.chat-bubble-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-bubble-avatar.bot-avatar {
  background: #041833;
  color: #c59b27;
  border: 1.5px solid rgba(197, 155, 39, 0.4);
  box-shadow: 0 2px 6px rgba(4, 24, 51, 0.2);
}

.chat-bubble-avatar.user-avatar {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Bubble Content Wrap */
.chat-bubble-content {
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 46px);
}

.chat-bubble.user-row .chat-bubble-content {
  align-items: flex-end;
}

.chat-bubble:not(.user-row) .chat-bubble-content {
  align-items: flex-start;
}

/* Bot Message Bubble */
.chat-msg-bot,
.chat-msg.bot {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 16px 16px 16px 4px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  word-break: break-word;
}

.chat-msg-bot p,
.chat-msg.bot p {
  margin: 0 0 0.4rem 0;
}
.chat-msg-bot p:last-child,
.chat-msg.bot p:last-child {
  margin-bottom: 0;
}

.chat-msg-bot strong,
.chat-msg.bot strong {
  color: #041833;
  font-weight: 600;
}

.chat-msg-bot ul.chat-list,
.chat-msg-bot ol.chat-list {
  margin: 0.4rem 0;
  padding-left: 1.25rem;
}

.chat-msg-bot ul.chat-list li,
.chat-msg-bot ol.chat-list li {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
.chat-msg-bot ul.chat-list li:last-child,
.chat-msg-bot ol.chat-list li:last-child {
  margin-bottom: 0;
}

.chat-msg-bot a {
  color: #b48518;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.chat-msg-bot a:hover {
  color: #8a650e;
  text-decoration: underline;
}

/* User Message Bubble */
.chat-msg-user,
.chat-msg.user {
  background: linear-gradient(135deg, #041833 0%, #0d284f 100%);
  color: #ffffff;
  border-radius: 16px 16px 4px 16px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 3px 10px rgba(4, 24, 51, 0.15);
  word-break: break-word;
  text-align: left;
}

/* Message Timestamps */
.chat-msg-time {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 3px;
  padding: 0 4px;
}

/* Quick Action Chips */
.chat-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.3rem 0 0 0;
}

.chip-btn {
  background: #ffffff;
  border: 1px solid #dcd1ab;
  color: #041833;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.chip-btn:hover {
  background: #faf6eb;
  border-color: #c59b27;
  color: #8a650e;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(197, 155, 39, 0.18);
}

/* Typing Indicator */
.chat-typing-dots {
  padding: 0.6rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-left: 2px;
}

.chat-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c59b27;
  animation: typing 1.4s infinite ease-in-out both;
}

.chat-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.chat-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.3); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Input Bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  gap: 0.5rem;
}

.chat-input-bar input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #1e293b;
  outline: none;
  transition: all 0.2s ease;
}

.chat-input-bar input:focus {
  border-color: #c59b27;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.btn-chat-send {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #041833;
  color: #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(4, 24, 51, 0.2);
}

.btn-chat-send:hover {
  background: #c59b27;
  color: #041833;
  transform: scale(1.06);
}

/* --- 22. Full Custom Grid & Utility Classes (Zero-Framework Standard) --- */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row > * {
  box-sizing: border-box;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

.g-0 { margin-left: 0; margin-right: 0; }
.g-0 > * { padding-left: 0; padding-right: 0; }
.g-1 { margin-left: -0.25rem; margin-right: -0.25rem; }
.g-1 > * { padding: 0.25rem; }
.g-2 { margin-left: -0.5rem; margin-right: -0.5rem; }
.g-2 > * { padding: 0.5rem; }
.g-3 { margin-left: -0.75rem; margin-right: -0.75rem; }
.g-3 > * { padding: 0.75rem; }
.g-4 { margin-left: -1rem; margin-right: -1rem; }
.g-4 > * { padding: 1rem; }
.g-5 { margin-left: -1.5rem; margin-right: -1.5rem; }
.g-5 > * { padding: 1.5rem; }

@media (max-width: 991px) {
  .g-5 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; }
  .g-5 > * { padding: 0.75rem !important; }
}

.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-12 { width: 100%; }
}

/* Flexbox & Layout Shorthands */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

@media (min-width: 1200px) {
  .d-xl-block { display: block !important; }
  .d-xl-none { display: none !important; }
}

@media (max-width: 1199px) {
  .d-xl-none { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline { display: inline !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-none { display: none !important; }
}

@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-none { display: none !important; }
  .flex-md-row { flex-direction: row !important; }
}

.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-stretch { align-items: stretch !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-center { align-self: center !important; }

/* Gap & Spacing Helpers */
.gap-0 { gap: 0 !important; }
.gap-0\.5 { gap: 0.125rem !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.5rem !important; }
.gap-6 { gap: 2rem !important; }

@media (min-width: 576px) {
  .gap-sm-2 { gap: 0.5rem !important; }
  .gap-sm-2\.5 { gap: 0.625rem !important; }
  .gap-sm-3 { gap: 0.75rem !important; }
  .flex-sm-row { flex-direction: row !important; }
}

@media (min-width: 768px) {
  .gap-md-3 { gap: 0.75rem !important; }
  .gap-md-4 { gap: 1rem !important; }
  .text-md-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
}

/* Font Size Helpers */
.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }
.fst-italic { font-style: italic !important; }

/* Fractional Margin / Padding Helpers */
.mt-0\.5 { margin-top: 0.125rem !important; }
.mb-1\.5 { margin-bottom: 0.375rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.px-1\.5 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.p-2\.5 { padding: 0.625rem !important; }

/* Sizing & Alignment Utilities */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.w-auto { width: auto !important; }
.h-auto { height: auto !important; }
.mt-auto { margin-top: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }
.shadow-xs { box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.05)) !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }

/* Colors & Theme Utilities */
.text-accent { color: var(--c-gold) !important; }
.bg-accent { background-color: var(--c-gold) !important; }
.text-gold { color: var(--c-gold) !important; }
.bg-gold { background-color: var(--c-gold) !important; }
.text-brown { color: var(--c-gold-dark) !important; }
.bg-brown { background-color: var(--c-gold) !important; color: #fff !important; }
.btn-brown { background-color: var(--c-gold) !important; color: #fff !important; border: none !important; }
.btn-brown:hover { background-color: var(--c-gold-hover) !important; }
.btn-energetic-coral { background: var(--c-gold) !important; color: #fff !important; }
.btn-energetic-coral:hover { background: var(--c-gold-hover) !important; }

.bg-dark { background-color: var(--c-navy-dark) !important; }
.bg-light { background-color: var(--c-bg-light) !important; }
.bg-white { background-color: #ffffff !important; }
.text-dark { color: var(--c-text-main) !important; }
.text-white { color: #ffffff !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.65) !important; }
.text-secondary { color: var(--c-text-muted) !important; }
.text-primary { color: var(--c-navy) !important; }
.text-success { color: #16a34a !important; }
.text-danger { color: #dc2626 !important; }
.text-warning { color: #d97706 !important; }

/* Typography */
.fw-bold { font-weight: 700 !important; }
.fw-extrabold { font-weight: 800 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-normal { font-weight: 400 !important; }
.small { font-size: 0.875rem !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-decoration-none { text-decoration: none !important; }
.text-nowrap { white-space: nowrap !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--c-border) !important; }
.border-bottom { border-bottom: 1px solid var(--c-border) !important; }
.border-start { border-left: 1px solid var(--c-border) !important; }
.border-end { border-right: 1px solid var(--c-border) !important; }

/* Cards & Surfaces */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.rounded-3 { border-radius: var(--r-md) !important; }
.rounded-4 { border-radius: var(--r-lg) !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: var(--r-full) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-none { box-shadow: none !important; }

/* Form Elements */
.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text-main);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--c-gold);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(200, 157, 60, 0.2);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--c-navy);
  display: inline-block;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/* Nav Pills */
.nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-navy);
  background-color: transparent;
  border: 1px solid transparent;
  transition: all var(--trans-fast);
  text-decoration: none;
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: var(--c-bg-light);
  color: var(--c-gold-dark);
  border-color: var(--c-border);
}

.nav-pills .nav-link.active {
  background-color: #0b1a30 !important;
  color: #ffffff !important;
  border-color: #0b1a30 !important;
  box-shadow: 0 6px 16px rgba(11, 26, 48, 0.18);
}

.nav-pills .nav-link.active i {
  color: var(--c-gold) !important;
}

/* ==========================================================================
   SUBPAGE UNIFIED HERO BANNER & COMPONENTS
   ========================================================================== */
.subpage-hero-banner {
  position: relative;
  background-color: #0b1a38;
  background-image: 
    linear-gradient(135deg, rgba(8, 22, 54, 0.95) 0%, rgba(12, 28, 66, 0.92) 50%, rgba(6, 17, 42, 0.98) 100%),
    url('images/hex-pattern.svg'),
    url('images/harihar-building.jpg');
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, 70px 121px, cover;
  background-position: center, center, center;
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  margin-top: 0;
}

.subpage-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.subpage-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  line-height: 1.6;
  margin: 0;
}

.subpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.subpage-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.subpage-breadcrumb a:hover {
  color: var(--c-gold);
}

.subpage-breadcrumb .current {
  color: var(--c-gold);
}

.about-main-card,
.content-card-custom {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.about-desc-text {
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.85;
  text-align: left !important;
  text-justify: auto !important;
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

.about-desc-text strong {
  font-weight: 800 !important;
  color: #0b1a30 !important;
}

/* Core Quality Philosophies & Card Components */
.philosophy-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.philosophy-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.15rem !important;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 1.15rem 1.35rem;
  transition: all 0.25s ease;
}

.philosophy-card:hover {
  background: #ffffff;
  border-color: rgba(200, 157, 60, 0.4);
  box-shadow: 0 6px 20px rgba(11, 26, 48, 0.06);
  transform: translateY(-2px);
}

.philosophy-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fdf8f0;
  border: 1.5px solid rgba(211, 129, 6, 0.25);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-content {
  flex: 1;
  min-width: 0;
}

.philosophy-title {
  color: var(--c-navy);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  display: block;
}

.philosophy-desc {
  font-size: 0.92rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  display: block;
  margin: 0;
}

/* About Us Separate Logo & Building Photo Cards */
.about-logo-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 26, 48, 0.07);
}

.about-logo-card img {
  height: 56px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.about-building-photo-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05);
  overflow: hidden;
}

.about-building-photo-card img {
  border-radius: 10px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}




.stat-metric-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 26, 48, 0.07);
}

.csr-pillar-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.03);
}

.csr-quote-banner {
  background: linear-gradient(135deg, #0b1a38 0%, #071226 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2.5rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 18, 38, 0.15);
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .csr-quote-banner {
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
    margin-top: 2rem;
  }
}


.sidebar-nav-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.sidebar-nav-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

/* Table */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--c-text-main);
  vertical-align: top;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border);
}

.table th {
  background-color: var(--c-bg-light);
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
}

.table-hover tbody tr:hover {
  background-color: #f1f5f9;
}

/* Hover Lift Effect */
.hover-lift {
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.hover-lift:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   PROJECT GALLERY SECTION
   ========================================================================== */
.gallery-section {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f8fafc;
  background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(255, 255, 255, 0.88) 100%),
    url('images/hex-pattern-light.svg');
  background-repeat: repeat;
  background-size: auto, 70px 121px;
  background-position: center;
  border-top: 1px solid rgba(11, 26, 48, 0.06);
  border-bottom: 1px solid rgba(11, 26, 48, 0.06);
  overflow: hidden;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  color: var(--c-navy);
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.gallery-filter-btn:hover {
  background: #ffffff;
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 157, 60, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 26, 48, 0.18);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.94) 0%, rgba(11, 26, 48, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.95;
  transition: opacity var(--trans-base);
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.gallery-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    height: 240px;
  }
}

.gallery-cta-wrapper {
  margin-top: 3.5rem;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* Video Gallery Enhancements */
.gallery-filter-video-btn {
  background: rgba(11, 26, 48, 0.06);
  border-color: rgba(211, 129, 6, 0.4);
  color: var(--c-navy);
}

.gallery-filter-video-btn i {
  color: var(--c-gold);
  margin-right: 4px;
}

.gallery-video-card {
  cursor: pointer;
  position: relative;
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.35) 0%, rgba(7, 18, 38, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.gallery-video-overlay-clean {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-video-card:hover .gallery-video-overlay-clean {
  background: rgba(11, 26, 48, 0.12);
}

.gallery-video-card:hover .gallery-video-overlay {
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.2) 0%, rgba(7, 18, 38, 0.88) 100%);
}

.video-card-badge {
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(4px);
  color: #ffc266;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(211, 129, 6, 0.4);
  width: fit-content;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.video-play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #d38106 0%, #f5a623 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(211, 129, 6, 0.6);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-pulse-btn i {
  margin-left: 3px;
}

.gallery-video-card:hover .video-play-pulse-btn {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(211, 129, 6, 0.85);
}

.video-card-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Video Lightbox Modal Popup */
.video-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-popup-backdrop.active {
  display: flex;
  opacity: 1;
}

.video-popup-container {
  width: 100%;
  max-width: 920px;
  background: #0b1a38;
  border-radius: 16px;
  border: 1px solid rgba(211, 129, 6, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
  animation: videoModalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes videoModalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.video-popup-header {
  padding: 1rem 1.5rem;
  background: rgba(6, 17, 36, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-popup-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-popup-title i {
  color: var(--c-gold);
}

.video-popup-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.video-popup-close-btn:hover {
  background: var(--c-gold);
  color: #ffffff;
  transform: rotate(90deg);
}

.video-popup-media-frame {
  position: relative;
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 75vh;
}

.video-popup-media-frame video {
  width: 100%;
  max-height: 75vh;
  outline: none;
  display: block;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background-color: var(--c-bg-light);
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.faq-card-item:hover, .faq-card-item.active {
  border-color: var(--c-gold);
  box-shadow: 0 8px 20px rgba(11, 26, 48, 0.06);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-navy);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--trans-fast);
}

.faq-card-item.active .faq-question-btn {
  color: var(--c-gold-dark);
}

.faq-caret {
  font-size: 1.35rem;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--trans-fast);
}

.faq-answer-pane {
  display: none;
  padding: 0 1.75rem 1.35rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.faq-answer-pane.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ==========================================================================
   CONTACT CTA SECTION & LEAD FORM
   ========================================================================== */
.contact-cta-section {
  padding: 5.5rem 0 3.5rem;
  background: var(--c-bg-light);
}

.contact-cta-card {
  background: linear-gradient(135deg, #0b1a38 0%, #10254c 100%);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(11, 26, 48, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200, 157, 60, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.channel-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(200, 157, 60, 0.3);
}

.channel-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.channel-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.channel-value a:hover {
  color: var(--c-gold);
}

.contact-cta-form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-grid-custom .full-span {
  grid-column: 1 / -1;
}

@media (max-width: 991px) {
  .contact-cta-card {
    padding: 2.25rem 1.5rem;
  }
  .contact-form-grid-custom {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EXACT FOOTER STYLES (MATCHING REFERENCE IMAGE)
   ========================================================================== */
.exact-skyline-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.exact-skyline-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 85px;
  max-height: 150px;
  object-fit: fill;
  object-position: bottom;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.exact-site-footer {
  position: relative;
  background-color: #0b1a3a;
  background-image: 
    linear-gradient(135deg, rgba(9, 23, 56, 0.98) 0%, rgba(13, 30, 70, 0.96) 50%, rgba(7, 18, 44, 0.99) 100%),
    url('images/hex-pattern.svg'),
    url('images/harihar-building.jpg');
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, 70px 121px, cover;
  background-position: center, center, center;
  color: #ffffff;
  padding: 4.5rem 0 2rem;
  overflow: hidden;
}

.exact-footer-overlay {
  display: none;
}

.exact-footer-content {
  position: relative;
  z-index: 2;
}

.exact-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}

.exact-footer-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.35rem;
  letter-spacing: -0.01em;
}

.exact-footer-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.exact-footer-logo-wrap {
  margin-bottom: 1.25rem;
}

.exact-footer-main-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.exact-footer-subheading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.exact-social-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.exact-social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #081630;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--trans-fast), background-color var(--trans-fast), color var(--trans-fast);
}

.exact-social-circle-btn:hover {
  transform: scale(1.12);
  background-color: var(--c-gold);
  color: #ffffff;
}

.exact-visitors-wrap {
  margin-top: 1.5rem;
}

.exact-visitors-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 167, 85, 0.35);
  border-radius: 8px;
  padding: 0.4rem 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.exact-visitors-count {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.exact-visitors-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
  animation: visitorPulse 2s infinite ease-in-out;
}

@keyframes visitorPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #22c55e; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.exact-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}

.exact-icon-box {
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.exact-contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.exact-contact-text a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.exact-contact-text a:hover {
  color: var(--c-gold);
}

.exact-company-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.exact-address-p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 380px;
}

.exact-copyright-row {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.exact-copyright-row .copyright-main {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.85rem;
}

.exact-copyright-row .copyright-developer {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.exact-copyright-row .copyright-developer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.exact-copyright-row .copyright-developer a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
   PROJECTS PAGE (EXACT REFERENCE DESIGN)
   ========================================================================== */
.projects-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.projects-status-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.status-filter-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0b1a38;
  padding: 0.65rem 1.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-filter-pill:hover {
  border-color: #0b1a38;
  color: #0b1a38;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.status-filter-pill.active {
  background: #ffffff;
  border: 2px solid #0b1a38;
  color: #0b1a38;
  box-shadow: 0 6px 16px rgba(11, 26, 56, 0.12);
}

.status-filter-divider {
  width: 2px;
  height: 28px;
  background-color: #cbd5e1;
  margin: 0 0.35rem;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .status-filter-divider {
    display: none;
  }
}

.projects-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.project-showcase-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 26, 48, 0.15);
}

.project-showcase-img-wrap,
.project-card-img-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #f1f5f9;
}

.project-showcase-img,
.project-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.project-showcase-card:hover .project-showcase-img,
.project-card-custom:hover .project-card-img-wrap img {
  transform: scale(1.06);
}

.project-rera-circle-badge,
.project-rera-badge {
  display: none !important;
}

.project-rera-circle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d32f2f;
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
  border: 2px solid #ffffff;
  z-index: 2;
  letter-spacing: 0.02em;
}

.project-rera-circle-badge i {
  font-size: 0.85rem;
  margin-bottom: 1px;
}

.project-showcase-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-showcase-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0b1a38;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

.project-showcase-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  text-align: center;
}

.project-showcase-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1.25rem;
  gap: 0.5rem;
}

.showcase-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b1a38;
}

.showcase-spec-item i {
  font-size: 1rem;
  color: #0b1a38;
}

.project-showcase-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-project-view {
  flex: 1;
  background: #0b1a38;
  color: #ffffff;
  text-align: center;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #0b1a38;
}

.btn-project-view:hover {
  background: #d38106;
  border-color: #d38106;
  color: #ffffff;
}

.btn-project-tour {
  flex: 1;
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #000000;
}

.btn-project-tour:hover {
  background: #d38106;
  border-color: #d38106;
  color: #ffffff;
}

/* Sidebar Search Widget */
.sidebar-search-widget {
  background: #08162f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(11, 26, 48, 0.2);
  margin-bottom: 2rem;
}

.sidebar-search-header {
  background: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.25rem;
  text-transform: uppercase;
}

.sidebar-search-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sidebar-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.sidebar-gold-select {
  width: 100%;
  background: #c89532;
  color: #0b1a38;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256'%3E%3Cpath fill='%230b1a38' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
}

.sidebar-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.sidebar-gold-input {
  width: 100%;
  background: #c89532;
  color: #0b1a38;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: none;
}

.sidebar-gold-input::placeholder {
  color: rgba(11, 26, 56, 0.75);
  font-weight: 600;
}

.sidebar-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.btn-sidebar-search {
  background: #c89532;
  color: #0b1a38;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sidebar-search:hover {
  background: #dfa83c;
  color: #000000;
  transform: translateY(-2px);
}

/* Sidebar Talk to Expert Widget */
.sidebar-expert-widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.sidebar-expert-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0b1a38;
  text-align: center;
  margin-bottom: 1.25rem;
}

.sidebar-expert-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.expert-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.expert-input-icon {
  position: absolute;
  left: 14px;
  color: #0b1a38;
  font-size: 1.2rem;
  pointer-events: none;
}

.expert-input-field {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: #fffdf9;
  border: 1.5px solid #d4a755;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0b1a38;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
}

.expert-input-field:focus {
  border-color: #0b1a38;
  box-shadow: 0 0 0 3px rgba(212, 167, 85, 0.25);
  background: #ffffff;
}

.btn-sidebar-expert-submit {
  width: 100%;
  background: #0b1a38;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.4rem;
}

.btn-sidebar-expert-submit:hover {
  background: #d38106;
  color: #ffffff;
}

@media (max-width: 991px) {
  .projects-layout-grid {
    grid-template-columns: 1fr;
  }
  .projects-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROJECT DETAILS PAGE (EXACT REFERENCE DESIGN)
   ========================================================================== */
.detail-hero-section {
  position: relative;
  background-color: #0b1a38;
  background-image: 
    linear-gradient(135deg, rgba(8, 22, 54, 0.94) 0%, rgba(12, 28, 66, 0.90) 50%, rgba(6, 17, 42, 0.96) 100%),
    url('images/hex-pattern.svg'),
    url('images/harihar-building.jpg');
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, 70px 121px, cover;
  background-position: center, center, center;
  color: #ffffff;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.detail-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.detail-hero-badge {
  display: inline-block;
  background: #0b1a38;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-hero-location {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.detail-hero-inquiry-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-hero-inquiry-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0b1a38;
  text-align: center;
  margin-bottom: 1.25rem;
}

.detail-section-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0b1a38;
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
  display: block;
}

.detail-section-title::after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background: var(--c-gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* 3 Video Grid */
.detail-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.detail-video-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease;
}

.detail-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 26, 56, 0.12);
}

.detail-video-thumb-wrap {
  position: relative;
  height: 220px;
  cursor: pointer;
  overflow: hidden;
  background: #041833;
}

.detail-video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.detail-video-thumb-wrap:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.detail-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.detail-video-thumb-wrap:hover .detail-video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Project Overview 3x4 Grid */
.detail-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.detail-overview-card {
  background: #ffffff;
  border: 1.5px solid #d4a755;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.detail-overview-card:hover {
  border-color: #0b1a38;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 26, 56, 0.08);
}

.detail-overview-icon {
  font-size: 2rem;
  color: var(--c-gold);
  flex-shrink: 0;
}

.detail-overview-info {
  display: flex;
  flex-direction: column;
}

.detail-overview-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-overview-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b1a38;
  margin-top: 2px;
}

/* Blueprint / Plan Section */
.detail-plan-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.detail-plan-tab-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0b1a38;
  transition: all 0.2s ease;
}

.detail-plan-tab-btn:hover {
  border-color: #0b1a38;
  color: #0b1a38;
}

.detail-plan-tab-btn.active {
  background: #0b1a38;
  color: #ffffff;
  border-color: #0b1a38;
}

.detail-blueprint-box {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.blueprint-viewer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  overflow: hidden;
  padding: 0.75rem;
}

.detail-blueprint-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.plan-counter-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 26, 56, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(212, 167, 85, 0.5);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plan-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid #d4a755;
  color: #0b1a38;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  z-index: 6;
  outline: none;
}

.plan-nav-arrow:hover {
  background: #0b1a38;
  color: #d4a755;
  border-color: #0b1a38;
  transform: translateY(-50%) scale(1.08);
}

.plan-nav-prev {
  left: 14px;
}

.plan-nav-next {
  right: 14px;
}

.plan-thumbnails-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.75rem 0 0.25rem;
}

.plan-thumb-btn {
  position: relative;
  width: 96px;
  height: 66px;
  padding: 2px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  opacity: 0.72;
}

.plan-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.plan-thumb-btn:hover {
  opacity: 1;
  border-color: #0b1a38;
  transform: translateY(-2px);
}

.plan-thumb-btn.active {
  opacity: 1;
  border-color: #d4a755;
  box-shadow: 0 4px 14px rgba(212, 167, 85, 0.4);
  transform: translateY(-2px);
}

.plan-thumb-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(11, 26, 56, 0.88);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .plan-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }
  .plan-nav-prev {
    left: 8px;
  }
  .plan-nav-next {
    right: 8px;
  }
  .plan-thumb-btn {
    width: 76px;
    height: 52px;
  }
  .blueprint-viewer-wrapper {
    min-height: 220px;
    padding: 0.35rem;
  }
}

/* Amenities Grid */
.detail-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.detail-amenity-card {
  background: #ffffff;
  border: 1.5px solid #d4a755;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.detail-amenity-card:hover {
  border-color: #0b1a38;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(11, 26, 56, 0.08);
}

.detail-amenity-icon {
  font-size: 2.2rem;
  color: var(--c-gold);
}

.detail-amenity-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b1a38;
}

/* Location & Route Map */
.detail-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.detail-map-box {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  height: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}

.detail-map-box iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  border: 0 !important;
}

/* Nearby Connectivity */
.detail-nearby-container {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  margin-bottom: 3.5rem;
}

.detail-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-nearby-col {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.detail-nearby-col:hover {
  border-color: rgba(200, 149, 50, 0.45);
  box-shadow: 0 6px 18px rgba(11, 26, 56, 0.06);
  background: #ffffff;
}

.detail-nearby-col-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0b1a38;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.9rem;
  border-bottom: 2px solid var(--c-gold);
}

.detail-nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #334155;
}

.detail-nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(11, 26, 56, 0.08);
}

.detail-nearby-item:last-child {
  border-bottom: none;
}

.nearby-item-name {
  font-weight: 600;
  line-height: 1.35;
  color: #1e293b;
}

.nearby-time-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 20px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nearby-healthcare-card {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.nearby-hc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nearby-hc-info {
  display: flex;
  flex-direction: column;
}

.nearby-hc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0b1a38;
}

.nearby-hc-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.25;
  margin-top: 2px;
}

.detail-nearby-footer-bar {
  margin-top: 1.75rem;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(135deg, #fdf8ee 0%, #fffbf2 100%);
  border: 1.5px solid rgba(200, 149, 50, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nearby-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nearby-footer-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
}

@media (max-width: 992px) {
  .detail-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .detail-nearby-grid {
    grid-template-columns: 1fr;
  }
  .detail-nearby-container {
    padding: 1.5rem 1rem;
  }
  .detail-nearby-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Facilities & Specs */
.detail-fac-spec-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 3.5rem;
}

.detail-spec-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.detail-spec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 50px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.detail-spec-badge.badge-standard {
  background: var(--c-navy-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-spec-badge.badge-premium {
  background: var(--c-gold);
  color: var(--c-navy-dark);
  border: 1px solid rgba(200, 157, 60, 0.3);
}

.detail-spec-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.detail-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 600;
}

.detail-spec-item i {
  color: #d32f2f;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Work Progress */
.detail-progress-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 3.5rem;
}

.detail-qr-box {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px dashed #d4a755;
  border-radius: 12px;
  background: #fffdf9;
}

.detail-qr-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/* Watch Video Highlight Button */
.btn-watch-progress-video {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #dc2626;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
}

.btn-watch-progress-video:hover {
  background: #b91c1c;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.45);
}

.btn-watch-progress-video i {
  font-size: 1.15rem;
  color: #ffffff;
}

/* Downloads & Actions (High-Impact Highlighted Buttons) */
.detail-download-strip {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn-detail-download {
  background: linear-gradient(135deg, #f5c84c 0%, #d4af37 45%, #b8860b 100%);
  color: #071221 !important;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}

.btn-detail-download i {
  font-size: 1.3rem;
  color: #071221;
  transition: transform 0.3s ease;
}

.btn-detail-download:hover {
  background: linear-gradient(135deg, #ffd768 0%, #e5b842 45%, #c89518 100%);
  color: #000000 !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.65), 0 0 15px rgba(245, 200, 76, 0.4);
}

.btn-detail-download:hover i {
  transform: scale(1.18);
}

.btn-detail-download:active {
  transform: translateY(-1px) scale(0.99);
}

/* Disclaimer Banner */
.detail-disclaimer-banner {
  background: #0b1a38;
  border-radius: 16px;
  padding: 2.5rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(11, 26, 56, 0.2);
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .detail-hero-grid,
  .detail-video-grid,
  .detail-overview-grid,
  .detail-amenities-grid,
  .detail-location-grid,
  .detail-nearby-grid,
  .detail-fac-spec-container,
  .detail-progress-container,
  .detail-disclaimer-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .exact-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exact-copyright-row {
    text-align: center;
  }
  .exact-footer-text, .exact-address-p {
    max-width: 100%;
  }
}

/* ==========================================================================
   BANK PARTNERS SHOWCASE STYLING
   ========================================================================== */
.bank-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.bank-logo-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  overflow: hidden;
  text-align: center;
}

.bank-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.bank-logo-card img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
}

/* ==========================================================================
   HERO SHOWCASE SLIDER (PURE CSS & VANILLA JS - NO FRAMEWORK)
   ========================================================================== */
.hero-slider-custom {
  position: relative;
  width: 100%;
  height: 520px;
  background-color: #04142e;
  overflow: hidden;
  user-select: none;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease-in-out;
  z-index: 1;
  will-change: transform, opacity;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide-item.prev-slide {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.hero-slide-item.next-slide {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

/* Gradient Overlay & Captions */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 46, 0.2) 0%, rgba(4, 20, 46, 0.15) 50%, rgba(4, 20, 46, 0.88) 100%);
  pointer-events: none;
}

.hero-slide-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  color: #ffffff;
  pointer-events: auto;
  max-width: 800px;
}

.hero-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 157, 60, 0.2);
  color: #d4a755;
  border: 1px solid rgba(200, 157, 60, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  margin-bottom: 0.5rem;
}

.hero-caption-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.hero-caption-sub {
  font-size: 0.92rem;
  color: #d4a755;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Floating Slide Counter Badge (Top Right) */
.hero-counter-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  background: rgba(7, 18, 33, 0.75);
  color: #d4a755;
  border: 1px solid rgba(212, 167, 85, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Floating Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 18, 33, 0.65);
  color: #ffffff;
  border: 1.5px solid rgba(212, 167, 85, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-slider-arrow:hover {
  background: var(--c-gold);
  color: #0b1a30;
  border-color: var(--c-gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 22px rgba(200, 157, 60, 0.45);
}

.hero-slider-arrow.prev { left: 1.25rem; }
.hero-slider-arrow.next { right: 1.25rem; }

/* Dot Indicators */
.hero-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot-item.active {
  width: 28px;
  border-radius: 10px;
  background: var(--c-gold);
  border-color: var(--c-gold);
  box-shadow: 0 0 10px rgba(200, 157, 60, 0.6);
}

/* Interactive Thumbnails Bar */
.hero-thumbs-wrapper {
  background: #071221;
  border-top: 1px solid rgba(212, 167, 85, 0.25);
  padding: 0.65rem 1rem;
}

.hero-thumbs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 167, 85, 0.4) transparent;
  padding: 0.2rem 0;
}

.hero-thumbs-container::-webkit-scrollbar {
  height: 4px;
}
.hero-thumbs-container::-webkit-scrollbar-thumb {
  background: rgba(212, 167, 85, 0.4);
  border-radius: 4px;
}

.hero-thumb-card {
  flex-shrink: 0;
  width: 84px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.hero-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumb-card:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-thumb-card.active {
  border-color: var(--c-gold);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(200, 157, 60, 0.4);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 991px) {
  .hero-slider-custom {
    height: 420px;
  }
  .hero-caption-title {
    font-size: 1.4rem;
  }
  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .hero-slider-arrow.prev { left: 0.75rem; }
  .hero-slider-arrow.next { right: 0.75rem; }
}

@media (max-width: 576px) {
  .hero-slider-custom {
    height: 320px;
  }
  .hero-slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .hero-caption-title {
    font-size: 1.15rem;
  }
  .hero-caption-sub {
    font-size: 0.8rem;
  }
  .hero-slider-dots {
    display: none;
  }
  .hero-thumb-card {
    width: 68px;
    height: 46px;
  }
}

/* ==========================================================================
   PROJECT DETAIL PAGE HEADER STRIP STYLING
   ========================================================================== */
.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.project-breadcrumb a {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-breadcrumb a:hover {
  color: var(--c-gold);
}

.project-breadcrumb .sep {
  color: #94a3b8;
  font-size: 0.75rem;
}

.project-breadcrumb .current {
  color: #9e6b20;
  font-weight: 800;
}

.project-title-main {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: #0b1a38;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.project-title-city {
  color: #c89d3c;
  font-weight: 700;
}

.project-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.project-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.project-badge-navy {
  background: #0b1a38;
  color: #ffffff;
  border: 1px solid #0b1a38;
}

.project-badge-gold {
  background: #fff8e8;
  color: #9e6b20;
  border: 1px solid #f0debb;
}

.project-badge-rera {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

@media (max-width: 768px) {
  .project-title-main {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   GLOBAL BUFFERING LOADER & SPINNER ANIMATION
   ========================================================================== */
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner-spin {
  animation: spinSlow 0.85s linear infinite;
  display: inline-block;
}

/* Global Page Buffering Overlay */
#global-page-loader {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 56, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  color: #ffffff;
}

#global-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.loader-spinner-ring {
  width: 44px;
  height: 44px;
  border: 3.5px solid rgba(212, 167, 85, 0.25);
  border-top-color: #d4a755;
  border-radius: 50%;
  animation: spinSlow 0.75s linear infinite;
  margin-bottom: 0.85rem;
}

.loader-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d4a755;
  text-transform: uppercase;
}

/* Top Progress Bar for page transitions */
#global-top-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #b17431, #f0debb, #d4a755);
  z-index: 100000;
  width: 0%;
  transition: width 0.2s ease;
}

/* ==========================================================================
   GOOGLE BUSINESS REVIEWS TRUST SHOWCASE
   ========================================================================== */
.google-reviews-container {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.google-reviews-header-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(11, 26, 56, 0.05);
}

.google-logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-review-card {
  background: #ffffff;
  border-radius: 1.15rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 26, 56, 0.08) !important;
  border-color: #cbd5e1;
}

.google-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.google-review-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.62;
}

@media (max-width: 768px) {
  .google-reviews-header-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   AI CHATBOT LOGO & AVATAR ENHANCEMENTS
   ========================================================================== */
.chat-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(200, 157, 60, 0.5);
  padding: 2px;
}

.chat-bubble-avatar.bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(200, 157, 60, 0.35) !important;
  padding: 2px;
}

.chat-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* About Page Justified Typography */
.about-desc-text,
.about-desc-text p {
  text-align: justify !important;
  text-justify: inter-word;
}




