/* ============================================================
   Bharat Promoters - Premium Real Estate CSS
   Theme: Light Mode | White bg + Black Accent
   ============================================================ */

:root {
  /* Brand Colors — blue replaced with black */
  --blue: #000000;
  --blue-dark: #111111;
  --blue-medium: #222222;
  --blue-light: #444444;
  --blue-dim: rgba(0,0,0,0.12);
  --blue-dim2: rgba(0,0,0,0.20);
  --gold: #C8992A;
  --gold-light: #b07d10;

  /* Light Theme */
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-card2: #f5f5f5;
  --bg-input: #f0f0f0;
  --bg-section: #f8f8f8;
  --bg-section2: #ffffff;
  --border: rgba(0,0,0,0.12);
  --border-strong: rgba(0,0,0,0.22);
  --text-primary: #111111;
  --text-secondary: rgba(0,0,0,0.72);
  --text-muted: rgba(0,0,0,0.48);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.16);
  --navbar-bg: rgba(255,255,255,0.97);
  --dropdown-bg: #ffffff;
  --white: #FFFFFF;

  /* Shared */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}
::selection { background: var(--blue); color: var(--white); }
a { text-decoration: none; transition: var(--transition); color: inherit; }
img { max-width: 100%; height: auto; }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--blue); color: white; padding: 8px 16px; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ---- Typography ---- */
h1,h2,h3,.display-font { font-family: var(--font-heading); color: var(--text-primary); }
.text-blue { color: #000000 !important; }
.text-gold { color: var(--gold) !important; }
.text-muted-blue { color: var(--text-muted); }
.text-light-muted { color: var(--text-secondary) !important; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.section-title .accent { color: var(--gold-light); }

/* ---- Top Bar (hidden / removed) ---- */
.top-bar { display: none; }

/* ---- Navigation ---- */
.main-navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  padding: 14px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(0px);
  position: relative;
  z-index: 1000;
}
.main-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.navbar-toggler { border: none; background: none; padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.toggler-line { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; transition: var(--transition); }

.nav-link {
  color: rgba(0,0,0,0.8) !important;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: #000000 !important; background: rgba(0,0,0,0.07); }

.dropdown-menu {
  background: var(--dropdown-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 8px !important;
  margin-top: 8px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7) !important;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.dropdown-item {
  color: rgba(0,0,0,0.75) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 16px !important;
  font-size: 0.84rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition) !important;
}
.dropdown-item i { color: var(--gold-light); width: 16px; }
.dropdown-item:hover { background: rgba(0,0,0,0.07) !important; color: #000000 !important; }
.dropdown-item.highlight { color: var(--gold-light) !important; font-weight: 700; }
.dropdown-divider { border-color: var(--border) !important; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  border: none; border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

/* ---- Buttons ---- */
.btn-primary-blue {
  background: #002E79;
  color: white !important;
  border: none; border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,46,121,0.45);
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.btn-primary-blue:hover {
  background: #001d4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,46,121,0.65);
  color: white !important;
}
.btn-outline-blue {
  background: transparent;
  color: rgba(0,0,0,0.9) !important;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-blue:hover {
  background: rgba(0,0,0,0.07);
  border-color: white;
  color: white !important;
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1e !important;
  border: none; border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,153,42,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,153,42,0.5); color: #0a0f1e !important; }
.btn-gold-outline {
  background: transparent; color: var(--gold) !important;
  border: 2px solid var(--gold); border-radius: 50px;
  padding: 10px 28px; font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold-outline:hover { background: var(--gold); color: #0a0f1e !important; transform: translateY(-2px); }

/* ---- Card Styles ---- */
.blue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.blue-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
  color: var(--text-primary);
}
.glass-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-section > .container {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Full-cover YouTube iframe technique */
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;   /* 16/9 * 100vh */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw; /* 9/16 * 100vw */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(200,153,42,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 100px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 24px;
  color: white;
}
.hero-title .gold-text { color: var(--gold-light); display: block; font-style: italic; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 40px; line-height: 1.85; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-trust-bar { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.trust-text { font-size: 0.8rem; }
.trust-text strong { display: block; color: white; font-size: 1rem; }
.trust-text span { color: rgba(255,255,255,0.65); }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(0,0,0,0.5);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; overflow: hidden; }
.scroll-mouse::before {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold-light); border-radius: 2px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  80% { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-section { position: relative; z-index: 10; margin-top: -60px; padding-bottom: 80px; }
.search-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.search-tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 2px solid var(--border); padding-bottom: 16px; }
.search-tab {
  background: none; border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 18px;
  color: var(--text-muted); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.search-tab.active, .search-tab:hover { background: var(--blue); color: white; border-color: var(--blue); }
.search-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr auto; gap: 12px; }
.search-group { display: flex; flex-direction: column; gap: 4px; }
.search-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.search-input, .search-select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition); width: 100%;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus, .search-select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0,46,121,0.25);
  background: var(--bg-card2);
}
.search-select option { background: var(--dropdown-bg); color: var(--text-primary); }
.btn-search {
  background: var(--blue); border: none;
  border-radius: var(--radius-sm);
  color: white; font-weight: 700;
  padding: 12px 24px; font-size: 0.85rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  align-self: flex-end; white-space: nowrap;
}
.btn-search:hover { background: var(--blue-medium); box-shadow: 0 8px 20px rgba(0,46,121,0.5); transform: translateY(-1px); }

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.property-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative; height: 100%;
  box-shadow: var(--shadow);
}
.property-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}
.property-img-wrap { position: relative; overflow: hidden; height: 220px; }
.property-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.property-card:hover .property-img-wrap img { transform: scale(1.07); }
.property-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 2; }
.badge-dtcp {
  background: var(--blue);
  color: white; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 4px 10px; border-radius: 50px;
}
.badge-status {
  background: rgba(0,0,0,0.65);
  color: #ffffff; font-size: 0.65rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.badge-status.available { color: #4ade80; border-color: rgba(74,222,128,0.3); background: rgba(0,0,0,0.65); }
.badge-status.sold { color: #f87171; border-color: rgba(248,113,113,0.3); }
.badge-status.upcoming { color: var(--gold-light); border-color: rgba(200,153,42,0.3); }
.property-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  z-index: 1;
}
.btn-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(0,0,0,0.15);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); z-index: 3; font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.btn-wishlist:hover, .btn-wishlist.active { color: #f87171; border-color: #f87171; background: rgba(248,113,113,0.15); }
.property-body { padding: 20px; }
.property-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.74rem; color: var(--text-muted); margin-bottom: 8px;
}
.property-location i { color: var(--gold-light); font-size: 0.7rem; }
.property-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.property-specs {
  display: flex; gap: 14px; margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.spec-item { display: flex; align-items: center; gap: 5px; font-size: 0.77rem; color: var(--text-muted); }
.spec-item i { color: var(--gold-light); font-size: 0.72rem; }
.property-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.property-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); }
.property-price-sub { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-body); }
.card-actions { display: flex; gap: 8px; }
.btn-view {
  background: rgba(0,0,0,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: rgba(0,0,0,0.8);
  font-size: 0.75rem; font-weight: 700; padding: 8px 14px;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 5px;
}
.btn-view:hover { background: var(--blue); color: white; border-color: var(--blue); }
.btn-wa-card {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 0.9rem;
}
.btn-wa-card:hover { background: #25D366; color: white; border-color: #25D366; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-blue { background: var(--blue); }
.bg-light-blue { background: var(--bg-section); }
.bg-off-white { background: var(--bg-section); }
.bg-white { background: var(--bg-section2); }
.bg-dark-gradient {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-body) 100%);
}
.bg-dark-2 { background: var(--bg-section2); }

.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0; border-radius: 2px;
}
.gold-divider.centered { margin: 16px auto; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }

/* Why Choose Us */
.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.why-us-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: var(--transition);
}
.why-us-card:hover::before { transform: scaleX(1); }
.why-us-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-strong); transform: translateY(-6px); }
.why-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(0,46,121,0.25);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--gold-light);
  transition: var(--transition);
}
.why-us-card:hover .why-icon { background: var(--blue); color: white; }
.why-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.why-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* Counter */
.counter-section {
  background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.counter-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.counter-item { text-align: center; position: relative; }
.counter-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: white; display: block; line-height: 1; margin-bottom: 8px; }
.counter-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

/* Testimonials */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -8px; left: 24px;
  font-family: var(--font-display); font-size: 5rem;
  color: var(--gold); opacity: 0.2; line-height: 1;
}
.testimonial-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-strong); }
.star-rating { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.author-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
  font-family: var(--font-heading); font-size: 1.1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }
.author-location { font-size: 0.74rem; color: var(--text-muted); }

/* Blog Cards */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); height: 100%;
  box-shadow: var(--shadow);
}
.blog-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-strong); transform: translateY(-4px); }
.blog-img-wrap { height: 200px; overflow: hidden; position: relative; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-category-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--blue); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.04em;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta span { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--gold-light); }
.blog-title { font-family: var(--font-heading); font-size: 1.02rem; font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 12px; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--gold-light); }
.blog-excerpt { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.04em; display: flex; align-items: center; gap: 6px; }
.blog-read-more i { transition: var(--transition); }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* FAQ */
.accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px !important; overflow: hidden;
}
.accordion-button {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important; font-size: 0.9rem !important;
  padding: 18px 24px !important; box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold-light) !important; background: var(--bg-card2) !important; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(75%) sepia(50%) saturate(500%) hue-rotate(5deg); }
.accordion-body {
  background: var(--bg-card) !important;
  color: var(--text-secondary) !important;
  font-size: 0.88rem !important; line-height: 1.8 !important;
  padding: 0 24px 20px !important;
}

/* ============================================================
   FORMS
   ============================================================ */
.luxury-input {
  background: var(--bg-input) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  padding: 13px 16px !important;
  transition: var(--transition) !important;
}
.luxury-input::placeholder { color: var(--text-muted) !important; }
.luxury-input:focus {
  border-color: var(--blue-light) !important;
  box-shadow: 0 0 0 3px rgba(0,46,121,0.25) !important;
  background: var(--bg-card2) !important;
}
.luxury-input option { background: var(--dropdown-bg); color: var(--text-primary); }
.footer-input {
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: var(--radius-sm) !important;
  color: white !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  padding: 11px 14px !important;
}
.footer-input::placeholder { color: rgba(0,0,0,0.4) !important; }
.footer-input:focus { border-color: var(--gold-light) !important; box-shadow: none !important; }

/* ---- Hero lead form ---- */
.hero-lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #000000; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-top { padding: 80px 0 60px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.stat-item { border-right: 1px solid rgba(255,255,255,0.15); padding-right: 20px; }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: #000000; border-color: var(--gold); transform: translateY(-2px); }
.footer-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 24px;
  position: relative; padding-bottom: 12px;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--gold);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { color: var(--gold); width: 16px; margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.footer-bottom {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }

/* Floating Buttons */
.floating-buttons {
  position: fixed; bottom: 30px; right: 24px;
  z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  border-radius: 50px; padding: 14px 20px;
  font-weight: 700; font-size: 0.8rem;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  text-decoration: none; color: white;
  overflow: hidden; max-width: 56px;
}
.float-btn:hover { max-width: 200px; color: white; }
.float-label { white-space: nowrap; opacity: 0; transition: var(--transition); width: 0; overflow: hidden; }
.float-btn:hover .float-label { opacity: 1; width: auto; }
.whatsapp-float { background: linear-gradient(135deg, #25D366, #128C7E); }
.whatsapp-float:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.call-float { background: var(--blue); color: white; }
.call-float:hover { background: var(--blue-medium); box-shadow: 0 8px 28px rgba(0,0,0,0.4); color: white; }
.float-btn i { font-size: 1.1rem; flex-shrink: 0; }

/* Modal Styles */
.modal-content.glass-card, .modal-content {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--text-primary);
}
.modal-header { border-bottom: 1px solid var(--border) !important; }
.modal-footer { border-top: 1px solid var(--border) !important; }
.btn-close { filter: none; }
.modal-title { color: var(--gold-light) !important; }

/* Breadcrumb */
.breadcrumb-section { background: #f5f5f5; border-bottom: 1px solid #e8e8e8; padding: 12px 0; }
.breadcrumb { display: flex; flex-wrap: nowrap; align-items: center; margin: 0; padding: 0; list-style: none; white-space: nowrap; overflow-x: auto; }
.breadcrumb-item { display: inline-flex; align-items: center; font-size: 0.82rem; white-space: nowrap; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; color: #aaaaaa; padding: 0 8px; }
.breadcrumb-item a { color: #555555; text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: #002E79; }
.breadcrumb-item.active { color: #002E79; font-weight: 600; }

/* Pagination */
.pagination .page-link {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-sm) !important;
  margin: 0 2px; padding: 9px 15px;
  font-size: 0.85rem; transition: var(--transition);
}
.pagination .page-link:hover { background: var(--bg-card2) !important; color: var(--gold-light) !important; border-color: var(--border-strong) !important; }
.pagination .page-item.active .page-link { background: var(--blue) !important; border-color: var(--blue) !important; color: white !important; }

/* Filter Bar */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.filter-bar .form-select, .filter-bar .form-control {
  background: var(--bg-input) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
}
.filter-bar .form-select option { background: var(--dropdown-bg); }
.filter-bar .form-select:focus, .filter-bar .form-control:focus {
  border-color: var(--blue-light) !important;
  box-shadow: 0 0 0 3px rgba(0,46,121,0.25) !important;
}
.view-toggle .btn { background: var(--bg-input); border: 1px solid var(--border); color: var(--text-muted); padding: 8px 14px; }
.view-toggle .btn.active, .view-toggle .btn:hover { background: var(--blue-dim2); border-color: var(--blue-light); color: white; }

/* Swiper */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--gold-light) !important; }
.swiper-button-next, .swiper-button-prev {
  width: 44px !important; height: 44px !important;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; color: white !important;
  box-shadow: var(--shadow);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900 !important; }

/* Gallery */
.property-gallery .gallery-main { border-radius: var(--radius); overflow: hidden; height: 420px; cursor: zoom-in; }
.property-gallery .gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 8px; }
.gallery-thumb { height: 85px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold-light); }

/* Toast */
.toast-custom {
  position: fixed; top: 90px; right: 24px; z-index: 9999;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  color: var(--text-primary); font-size: 0.88rem;
  box-shadow: var(--shadow-strong);
  transform: translateX(120%); transition: transform 0.4s ease;
  max-width: 320px;
}
.toast-custom.show { transform: translateX(0); }
.toast-custom.success { border-color: rgba(74,222,128,0.4); }
.toast-custom.error { border-color: rgba(248,113,113,0.4); }

/* Spinner */
.spinner-gold {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold-light);
  border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Live Search */
.live-search-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--dropdown-bg); border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 100; max-height: 250px; overflow-y: auto;
  box-shadow: var(--shadow-strong);
}
.live-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition); font-size: 0.85rem;
}
.live-result-item:hover { background: rgba(0,0,0,0.06); color: #000000; }
.live-result-icon { color: var(--gold-light); }
.live-result-name { font-weight: 700; }
.live-result-meta { color: var(--text-muted); font-size: 0.74rem; }
.live-result-empty { padding: 16px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Scroll Top */
.scroll-top-btn {
  position: fixed; bottom: 100px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); border: none;
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: var(--transition); z-index: 998; font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--blue-medium); transform: translateY(-2px); }

/* Admin Styles */
.admin-table th { background: var(--bg-card2) !important; color: var(--gold-light) !important; }
.admin-table td { color: var(--text-primary) !important; border-color: var(--border) !important; }
.admin-table tbody tr:hover td { background: var(--bg-card2) !important; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.stat-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-strong); }
.stat-card .stat-icon { background: rgba(0,46,121,0.3); color: var(--gold-light); }
.stat-card .stat-num { color: var(--gold-light); }

/* Search form in properties/filter pages */
.search-card h5, .search-card h6, .search-card label,
.filter-bar h5, .filter-bar h6, .filter-bar label { color: var(--text-primary); }

/* Contact page cards */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Map iframe */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeInUp 0.8s ease forwards; }
.hero-badge { animation-delay: 0.1s; opacity: 0; }
.hero-title { animation-delay: 0.25s; opacity: 0; }
.hero-subtitle { animation-delay: 0.4s; opacity: 0; }
.hero-cta-group { animation-delay: 0.55s; opacity: 0; }
.hero-trust-bar { animation-delay: 0.7s; opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .search-row { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 120px 0 80px; }
  .hero-title { font-size: 2.4rem; }
  .navbar-collapse {
    background: var(--bg-card); padding: 20px;
    border-radius: var(--radius); margin-top: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
  }
}
@media (max-width: 767px) {
  .search-row { grid-template-columns: 1fr; }
  .hero-trust-bar { gap: 16px; }
  .section-pad { padding: 70px 0; }
  .counter-num { font-size: 2.2rem; }
  .float-btn { max-width: 52px; padding: 14px; border-radius: 50%; }
  .float-btn:hover { max-width: 52px; }
  .float-btn:hover .float-label { opacity: 0; width: 0; }
}

/* Navbar scrolled state - dark text */
.main-navbar.scrolled .nav-link { color: rgba(0,0,0,0.75) !important; }
.main-navbar.scrolled .nav-link:hover,
.main-navbar.scrolled .nav-link.active { color: #000000 !important; }
.main-navbar.scrolled .logo-name { color: #000000 !important; }
.main-navbar.scrolled .toggler-line { background: #000000 !important; }

/* ============================================================
   Desktop Navbar - White Menu Links with Style
   ============================================================ */
@media (min-width: 992px) {
  /* Nav links - white with hover underline effect */
  .nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 14px !important;
    border-radius: 0 !important;
    position: relative;
    background: transparent !important;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }
  .nav-link:hover,
  .nav-link.active {
    color: #ffffff !important;
    background: transparent !important;
  }

  /* Dropdown arrow white */
  .nav-link.dropdown-toggle::after { border-top-color: rgba(255,255,255,0.7); }

  /* WhatsApp button stays green */
  .nav-link.btn-whatsapp,
  a.btn-whatsapp { color: #ffffff !important; }
  a.btn-whatsapp::after { display: none; }

  /* Scrolled state - dark links */
  .main-navbar.scrolled .nav-link {
    color: rgba(0,0,0,0.78) !important;
  }
  .main-navbar.scrolled .nav-link::after {
    background: #000000;
  }
  .main-navbar.scrolled .nav-link:hover,
  .main-navbar.scrolled .nav-link.active {
    color: #000000 !important;
  }
  .main-navbar.scrolled .nav-link.dropdown-toggle::after {
    border-top-color: rgba(0,0,0,0.6);
  }

  /* Logo white on hero */
  .logo-name { color: #ffffff !important; }
  .main-navbar.scrolled .logo-name { color: #000000 !important; }
  .toggler-line { background: #ffffff !important; }
  .main-navbar.scrolled .toggler-line { background: #000000 !important; }
}

/* ============================================================
   INDEX PAGE - Full UI Fix
   ============================================================ */

/* 1. Hero - navbar no longer fixed, so hero sits naturally */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .main-navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  position: relative !important;
}

/* 2. All white-bg sections - ensure dark text */
body, .section-pad, .bg-white, .bg-off-white, .bg-section, .bg-light-blue {
  color: #111111;
}

/* Section titles & labels on white bg */
.section-title { color: #111111 !important; }
.section-label { color: var(--gold) !important; }
.section-title .accent { color: #b07d10 !important; }

/* 3. Property cards on white bg */
.property-card { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,0.08); border: 1px solid #e8e8e8; }
.property-card:hover { border-color: #002E79; box-shadow: 0 8px 32px rgba(0,46,121,0.15); }
.property-title { color: #111111 !important; }
.property-location { color: #666666 !important; }
.spec-item { color: #555555 !important; }
.property-price { color: #b07d10 !important; }
.property-price-sub { color: #888888 !important; }
.btn-view {
  background: #f5f5f5;
  border: 1px solid #dddddd;
  color: #111111 !important;
  font-weight: 700;
}
.btn-view:hover { background: #002E79 !important; color: #ffffff !important; border-color: #002E79 !important; }

/* 4. View All Properties Button */
.btn-primary-blue {
  background: #002E79 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(0,46,121,0.4) !important;
}
.btn-primary-blue:hover {
  background: #001d4d !important;
  box-shadow: 0 10px 36px rgba(0,46,121,0.6) !important;
  color: #ffffff !important;
}

/* 5. Counter section - black bg, white text */
.counter-section {
  background: #000000 !important;
  padding: 80px 0;
}
.counter-num { color: var(--gold) !important; font-size: 3rem; }
.counter-label { color: rgba(255,255,255,0.65) !important; }
.counter-item { border-right: 1px solid rgba(255,255,255,0.1); padding: 0 20px; }
.counter-item:last-child { border-right: none; }

/* 6. Why Choose Us section - white bg */
.why-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.why-card:hover { border-color: #002E79; box-shadow: 0 8px 30px rgba(0,46,121,0.12); transform: translateY(-4px); }
.why-title { color: #111111 !important; font-size: 1.05rem; font-weight: 700; }
.why-desc { color: #555555 !important; }
.why-icon { color: #002E79 !important; }

/* 7. Category cards */
.category-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.category-card:hover { border-color: #002E79; box-shadow: 0 8px 28px rgba(0,46,121,0.15); transform: translateY(-4px); }
.cat-name { color: #002E79 !important; font-weight: 700; }
.glass-card h5 { color: #002E79 !important; font-weight: 700; }
.glass-card p { color: #555555 !important; }
.cat-count { color: #666666 !important; }

/* 8. Testimonial cards */
.testimonial-card {
  background: #ffffff !important;
  border: 1px solid #eeeeee !important;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.testimonial-card:hover { border-color: #002E79 !important; }
.testimonial-text { color: #444444 !important; }
.reviewer-name { color: #111111 !important; font-weight: 700; }
.reviewer-loc { color: #888888 !important; }

/* 9. Blog cards */
.blog-card {
  background: #ffffff !important;
  border: 1px solid #eeeeee !important;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.blog-card:hover { border-color: #002E79 !important; }
.blog-title, .blog-title a { color: #111111 !important; }
.blog-title a:hover { color: #002E79 !important; }
.blog-excerpt { color: #555555 !important; }
.blog-read-more { color: #002E79 !important; font-weight: 600; }
.blog-meta span { color: #888888 !important; }

/* 10. Footer - black bg white text */
.site-footer { background: #000000 !important; }
.footer-top { padding: 70px 0 50px; }
.footer-desc { color: rgba(255,255,255,0.6) !important; }
.footer-title { color: var(--gold) !important; }
.footer-title::after { background: var(--gold) !important; }
.footer-links a { color: rgba(255,255,255,0.55) !important; }
.footer-links a:hover { color: var(--gold) !important; }
.contact-item i { color: var(--gold) !important; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.6) !important; }
.contact-item a:hover { color: var(--gold) !important; }
.stat-num { color: var(--gold) !important; }
.stat-label { color: rgba(255,255,255,0.45) !important; }
.stat-item { border-right-color: rgba(255,255,255,0.15) !important; }
.social-btn { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; color: rgba(255,255,255,0.65) !important; }
.social-btn:hover { background: var(--gold) !important; color: #000000 !important; }
.footer-bottom { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4) !important; }
.footer-legal-links a { color: rgba(255,255,255,0.4) !important; }
.footer-legal-links a:hover { color: var(--gold) !important; }
.logo-name-footer { color: #ffffff !important; }

/* 11. Desktop nav white on hero */
@media (min-width: 992px) {
  .main-navbar .nav-link { color: rgba(255,255,255,0.92) !important; }
  .main-navbar .logo-name { color: #ffffff !important; }
  .main-navbar .toggler-line { background: #ffffff !important; }
}

/* ============================================================
   HERO - Navbar overlap fix + Category title + Breadcrumb
   ============================================================ */

/* Navbar sits above hero via negative margin */
.main-navbar {
  position: relative !important;
  z-index: 100;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

/* Hero pulls up to overlap navbar */
.hero-section {
  margin-top: -76px;
  padding-top: 76px;
}

/* Hero video covers full including navbar area */
.hero-video-bg {
  position: absolute;
  top: -76px;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-overlay {
  top: -76px !important;
}

/* After scrolling past hero - navbar needs white bg via JS scroll */
.main-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.main-navbar.scrolled .nav-link { color: rgba(0,0,0,0.75) !important; }
.main-navbar.scrolled .nav-link:hover { color: #000000 !important; }
.main-navbar.scrolled .logo-name { color: #000000 !important; }
.main-navbar.scrolled .toggler-line { background: #000000 !important; }
.main-navbar.scrolled .nav-link::after { background: #000000; }

/* Category cards - title #002E79 */
.glass-card h5,
.glass-card .text-light {
  color: #002E79 !important;
  font-weight: 700;
}
.glass-card p,
.glass-card .text-light-muted {
  color: #555555 !important;
}
.glass-card {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.glass-card:hover {
  border-color: #002E79 !important;
  box-shadow: 0 8px 28px rgba(0,46,121,0.12) !important;
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,46,121,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #002E79 !important;
  font-size: 1.3rem;
}

/* Breadcrumb - single line */
.breadcrumb-section { background: #f5f5f5; border-bottom: 1px solid #e5e5e5; padding: 11px 0; }
.breadcrumb {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  margin: 0; padding: 0;
  list-style: none;
  white-space: nowrap;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  white-space: nowrap;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/" !important;
  color: #bbbbbb;
  padding: 0 8px;
  float: none !important;
}
.breadcrumb-item a { color: #666666; text-decoration: none; }
.breadcrumb-item a:hover { color: #002E79; }
.breadcrumb-item.active { color: #002E79; font-weight: 600; }

/* ============================================================
   FINAL FIXES - Counter #002E79, Footer #002E79, Navbar smart
   ============================================================ */

/* 1. Counter section - #002E79 bg */
.counter-section {
  background: #002E79 !important;
}
.counter-num { color: #ffffff !important; }
.counter-label { color: rgba(255,255,255,0.75) !important; }
.counter-item { border-right-color: rgba(255,255,255,0.2) !important; }

/* 2. Footer - #002E79 bg */
.site-footer { background: #002E79 !important; }
.footer-bottom { background: rgba(0,0,0,0.25) !important; border-top: 1px solid rgba(255,255,255,0.15) !important; }
.footer-desc { color: rgba(255,255,255,0.75) !important; }
.footer-title { color: #ffffff !important; }
.footer-title::after { background: var(--gold) !important; }
.footer-links a { color: rgba(255,255,255,0.65) !important; }
.footer-links a:hover { color: var(--gold) !important; }
.contact-item i { color: var(--gold) !important; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.7) !important; }
.contact-item a:hover { color: var(--gold) !important; }
.stat-num { color: var(--gold) !important; }
.stat-label { color: rgba(255,255,255,0.55) !important; }
.stat-item { border-right-color: rgba(255,255,255,0.2) !important; }
.social-btn { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.2) !important; color: rgba(255,255,255,0.8) !important; }
.social-btn:hover { background: var(--gold) !important; color: #000000 !important; border-color: var(--gold) !important; }
.footer-legal-links a { color: rgba(255,255,255,0.5) !important; }
.footer-legal-links a:hover { color: var(--gold) !important; }
.footer-bottom p, .footer-bottom span, .footer-bottom div { color: rgba(255,255,255,0.5) !important; }

/* 3. Navbar - ONLY white on hero, black everywhere else */
/* Default navbar - dark text (for all non-hero pages) */
.main-navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.main-navbar .nav-link { color: rgba(0,0,0,0.72) !important; }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: #002E79 !important; }
.main-navbar .logo-name { color: #000000 !important; }
.main-navbar .toggler-line { background: #000000 !important; }
.main-navbar .nav-link::after { background: #002E79; }

/* Hero page only - transparent navbar with white text */
.hero-section .main-navbar,
.hero-page .main-navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.hero-section .main-navbar .nav-link,
.hero-page .main-navbar .nav-link { color: rgba(255,255,255,0.92) !important; }
.hero-section .main-navbar .nav-link:hover,
.hero-page .main-navbar .nav-link.active { color: #ffffff !important; }
.hero-section .main-navbar .logo-name,
.hero-page .main-navbar .logo-name { color: #ffffff !important; }
.hero-section .main-navbar .toggler-line,
.hero-page .main-navbar .toggler-line { background: #ffffff !important; }

/* Scrolled state - always dark */
.main-navbar.scrolled {
  background: #ffffff !important;
  border-bottom: 1px solid #e0e0e0 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.main-navbar.scrolled .nav-link { color: rgba(0,0,0,0.72) !important; }
.main-navbar.scrolled .nav-link:hover { color: #002E79 !important; }
.main-navbar.scrolled .logo-name { color: #000000 !important; }
.main-navbar.scrolled .toggler-line { background: #000000 !important; }

/* Hero navbar - inside hero section */
.navbar-hero {
  position: relative !important;
  z-index: 10;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
}
.navbar-hero .nav-link { color: rgba(255,255,255,0.92) !important; }
.navbar-hero .nav-link:hover { color: #ffffff !important; }
.navbar-hero .dropdown-menu { background: #ffffff !important; }
.navbar-hero .dropdown-item { color: #333333 !important; }
.hero-video-bg {
  position: absolute !important;
  top: 0 !important; left: 0; right: 0; bottom: 0;
}
