/* ═══════════════════════════════════════════════════════════════
   GRAND HOME CONSTRUCTION LTD — Premium Website Stylesheet
   Brand Colors: Navy #1B2A4A | Gold #C9933A | White #FFFFFF
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111d35;
  --navy-light: #243660;
  --gold:       #C9933A;
  --gold-light: #e0aa55;
  --gold-dark:  #a67720;
  --white:      #FFFFFF;
  --off-white:  #f8f6f2;
  --grey:       #8a9ab5;
  --dark-bg:    #0e1829;
  --card-bg:    rgba(27,42,74,0.6);
  --glass:      rgba(255,255,255,0.05);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold: 0 8px 40px rgba(201,147,58,0.25);
  --shadow-navy: 0 8px 40px rgba(27,42,74,0.4);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.loaded { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-brand {
  display: flex; flex-direction: column; align-items: center;
  margin: 16px 0 24px;
}
.l-grand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.12em;
}
.l-home {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.12em;
}
.l-const {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.3em;
  margin-top: 4px;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ── NAVBAR ── */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(14,24,41,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201,147,58,0.15);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nlt-grand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--white); letter-spacing: 0.05em;
}
.nlt-const {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.25em;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

/* Hamburger */
.navbar-toggler { border: none; background: transparent; padding: 6px; }
.tog-line {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none; border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,147,58,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark) !important;
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 2px solid var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy) !important;
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ── TYPOGRAPHY ── */
.text-gold { color: var(--gold) !important; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 0 0 24px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-label.light { color: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.65); }
.section-body { color: #556; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.section-body.light { color: rgba(255,255,255,0.75); }
.section-pad { padding: 100px 0; }
.bg-dark-section { background: var(--dark-bg); }

/* ── HERO ── */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,24,41,0.92) 0%,
    rgba(27,42,74,0.82) 40%,
    rgba(14,24,41,0.7) 100%
  );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,147,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,147,58,0.12);
  border: 1px solid rgba(201,147,58,0.3);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.6); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero Stats */
.hero-stats {
  position: relative; z-index: 2;
  background: rgba(14,24,41,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,147,58,0.2);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,147,58,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 2.8rem;
  color: var(--gold); line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold);
}
.stat-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 100px; right: 40px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden; padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-dark);
  padding: 0 20px;
}
.t-dot { color: var(--navy-dark) !important; opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── INTRO STRIP ── */
.intro-img-stack { position: relative; }
.intro-img-main {
  border-radius: 8px;
  box-shadow: var(--shadow-navy);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
}
.intro-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-navy);
  border: 1px solid rgba(201,147,58,0.2);
  min-width: 200px;
}
.ibc-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 2rem;
  line-height: 1;
}
.ibc-txt {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.trust-point {
  font-size: 0.9rem; color: #445;
  padding: 6px 0;
}

/* ── SERVICES ── */
.service-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,147,58,0.12);
  border-radius: 8px;
  padding: 28px 22px;
  cursor: pointer; position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  text-decoration: none;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: rgba(201,147,58,0.07);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 56px; height: 56px;
  background: rgba(201,147,58,0.1);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.sc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.6; flex: 1;
  margin-bottom: 16px;
}
.sc-arrow {
  width: 32px; height: 32px;
  background: rgba(201,147,58,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem;
  transition: var(--transition);
  margin-top: auto;
}
.service-card:hover .sc-arrow {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateX(4px);
}
.service-card--cta {
  background: rgba(201,147,58,0.07);
  border-color: rgba(201,147,58,0.3);
  border-style: dashed;
}

/* ── PROJECTS GRID ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.proj-item {
  position: relative; overflow: hidden;
  border-radius: 8px; cursor: pointer;
  aspect-ratio: 4/3;
}
.proj-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.proj-item:hover img { transform: scale(1.08); }
.proj-large {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,24,41,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.proj-item:hover .proj-overlay { opacity: 1; }
.proj-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,147,58,0.12);
  border: 1px solid rgba(201,147,58,0.3);
  padding: 4px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 8px;
}
.proj-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--white);
}
.proj-link {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  transition: var(--transition);
}
.proj-link:hover { transform: scale(1.1); }

/* ── WHY US ── */
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,147,58,0.1);
  border-radius: 8px;
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,147,58,0.06);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,147,58,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process-timeline { position: relative; }
.process-line {
  position: absolute; top: 52px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  display: none;
}
@media (min-width: 992px) { .process-line { display: block; } }
.process-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(201,147,58,0.08);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  line-height: 1;
  user-select: none;
}
.process-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy-dark);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.process-card:hover .process-icon { transform: scale(1.1); }
.process-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 0.88rem; color: #667;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-slider { overflow: hidden; }
.testi-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,147,58,0.12);
  border-radius: 8px;
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--gold);
  background: rgba(201,147,58,0.05);
}
.testi-stars {
  color: var(--gold); font-size: 1.1rem;
  letter-spacing: 2px; margin-bottom: 16px;
}
.testi-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  line-height: 1.8; font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.2rem; color: var(--white);
}
.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--white);
}
.testi-role {
  font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.05em;
}
.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: 50%;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.testi-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%; cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--gold); width: 24px; border-radius: 4px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,147,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-logo-mark {
  margin-bottom: 24px; opacity: 0.4;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 1rem;
}
.cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem; margin-bottom: 2.5rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,147,58,0.15);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-text {
  display: flex; flex-direction: column;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}
.footer-logo-text span:first-child {
  font-size: 1.1rem; color: var(--white); letter-spacing: 0.05em;
}
.footer-logo-text span:last-child {
  font-size: 0.6rem; letter-spacing: 0.3em;
}
.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,147,58,0.2);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.fc-item {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
}
.fc-item i { margin-top: 2px; flex-shrink: 0; }
.fc-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.fc-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 900;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 20px; border-radius: 30px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  animation: floatPulse 3s ease infinite;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(201,147,58,0.5);
  color: var(--navy-dark);
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(201,147,58,0.3); }
  50% { box-shadow: 0 4px 40px rgba(201,147,58,0.5); }
}

/* ═══════════════════════════════ PAGE: ABOUT ═══ */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,147,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white); line-height: 1.05;
}
.breadcrumb-bar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
}
.breadcrumb-bar a { color: rgba(255,255,255,0.5); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { color: rgba(255,255,255,0.3); }
.breadcrumb-bar .bc-current { color: var(--gold); }

/* About page specifics */
.timeline-item {
  display: flex; gap: 24px;
  margin-bottom: 32px;
}
.timeline-year {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.4rem;
  color: var(--gold); min-width: 60px;
}
.timeline-content {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,147,58,0.1);
  flex: 1;
}
.timeline-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--navy); margin-bottom: 8px;
}
.timeline-content p { font-size: 0.9rem; color: #667; line-height: 1.7; }

/* Values */
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201,147,58,0.12);
  border-radius: 8px;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(201,147,58,0.03);
  transform: translateY(-4px);
}
.value-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  margin: 0 auto 20px;
}
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--navy); margin-bottom: 10px;
}
.value-card p { font-size: 0.88rem; color: #667; line-height: 1.7; }

/* ═══════════════════════════════ PAGE: SERVICES ═══ */
.service-detail-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(27,42,74,0.08);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover {
  box-shadow: 0 12px 60px rgba(27,42,74,0.15);
  transform: translateY(-6px);
}
.sdc-image { aspect-ratio: 16/9; overflow: hidden; }
.sdc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-detail-card:hover .sdc-image img { transform: scale(1.05); }
.sdc-body { padding: 28px; }
.sdc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 16px;
}
.sdc-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.3rem;
  color: var(--navy); margin-bottom: 10px;
}
.sdc-body p { font-size: 0.9rem; color: #667; line-height: 1.7; }
.sdc-tag {
  display: inline-block; margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,147,58,0.1);
  border: 1px solid rgba(201,147,58,0.2);
  padding: 4px 12px; border-radius: 20px;
}

/* ═══════════════════════════════ PAGE: PROJECTS ═══ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(27,42,74,0.2);
  border-radius: 30px;
  background: transparent;
  color: var(--navy);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}
.masonry-grid {
  columns: 3; gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative; overflow: hidden;
  border-radius: 8px; cursor: pointer;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,24,41,0.9), transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1rem;
  margin-bottom: 4px;
}
.masonry-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ═══════════════════════════════ PAGE: CONTACT ═══ */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 60px rgba(27,42,74,0.1);
}
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
}
.form-control, .form-select {
  border: 1.5px solid #e0e4ec;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.95rem; color: var(--navy);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,147,58,0.1);
  outline: none;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}
.cic-item {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 28px;
}
.cic-icon {
  width: 48px; height: 48px;
  background: rgba(201,147,58,0.15);
  border: 1px solid rgba(201,147,58,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0;
}
.cic-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.cic-val {
  color: var(--white); font-size: 0.95rem;
  line-height: 1.5;
}
.cic-val a { color: var(--white); transition: var(--transition); }
.cic-val a:hover { color: var(--gold); }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  border-radius: 8px;
  min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,147,58,0.15);
  color: rgba(255,255,255,0.5);
  text-align: center; padding: 40px;
}
.map-placeholder i {
  font-size: 3rem; color: var(--gold); margin-bottom: 16px;
}
.form-success {
  display: none;
  text-align: center; padding: 40px;
}
.form-success.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proj-large { grid-row: auto; }
  .testi-card { flex: 0 0 calc(50% - 12px); }
  .masonry-grid { columns: 2; }
  .contact-form-wrap { padding: 32px 24px; }
  .navbar .btn-gold { margin-top: 12px; }
}
@media (max-width: 767px) {
  .projects-grid { grid-template-columns: 1fr; }
  .intro-badge-card { bottom: -16px; right: -8px; }
  .testi-card { flex: 0 0 100%; }
  .masonry-grid { columns: 1; }
  .floating-cta .float-btn span { display: none; }
  .floating-cta .float-btn { padding: 14px; border-radius: 50%; }
  .hero-title { font-size: 2.8rem; }
  .scroll-hint { display: none; }
  .page-hero { min-height: 40vh; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .stat-item { padding: 20px 12px; }
  .stat-num { font-size: 2rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .cta-actions .btn { width: 100%; }
}



/* ══════════════════════════════════════════════════════════════
   SIDE ACTION BAR — append to the bottom of css/style.css
   ══════════════════════════════════════════════════════════════ */
 
/* ── Container ── */
.side-action-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 0;
  background: var(--navy-dark);
  border-radius: 14px 0 0 14px;
  border: 1px solid rgba(201,147,58,0.18);
  border-right: none;
  box-shadow: -6px 0 40px rgba(0,0,0,0.35);
  transition: var(--transition);
}
 
/* ── Individual button ── */
.sab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.35s ease, background 0.35s ease;
  border-radius: 0;
  outline: none;
}
 
.sab-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
 
/* ── Icon wrapper ── */
.sab-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
 
.sab-btn:hover .sab-icon {
  transform: scale(1.15);
}
 
/* ── Slide-out label ── */
.sab-label {
  position: absolute;
  right: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px 0 0 8px;
  border: 1px solid rgba(201,147,58,0.2);
  border-right: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--gold);
}
 
.sab-btn:hover .sab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
 
/* ── Per-button accent colours ── */
.sab-btn--call:hover                    { color: #4ade80; }
.sab-btn--call:hover .sab-label        { color: #4ade80; border-color: rgba(74,222,128,0.25); }
 
.sab-btn--whatsapp:hover               { color: #25D366; }
.sab-btn--whatsapp:hover .sab-label    { color: #25D366; border-color: rgba(37,211,102,0.25); }
 
.sab-btn--insta:hover                  { color: #f472b6; }
.sab-btn--insta:hover .sab-label       { color: #f472b6; border-color: rgba(244,114,182,0.25); }
 
.sab-btn--top:hover                    { color: var(--gold); }
 
/* ── Divider between socials and top button ── */
.sab-divider {
  width: 28px;
  height: 1px;
  background: rgba(201,147,58,0.2);
  margin: 4px 0;
  flex-shrink: 0;
}
 
/* ── Scroll-to-top: hidden until scrolled ── */
.sab-btn--top {
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: opacity 0.4s ease, color 0.35s ease;
}
 
.sab-btn--top.visible {
  opacity: 1;
  pointer-events: auto;
}
 
/* ── Hover strip on left edge (gold accent line) ── */
.sab-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
 
.sab-btn:hover::before {
  transform: scaleY(1);
}
 
/* ════════════ RESPONSIVE ════════════ */
 
/* Tablet (768–991px) — slightly smaller */
@media (max-width: 991px) {
  .side-action-bar {
    padding: 8px 0;
  }
 
  .sab-btn,
  .sab-icon {
    width: 46px;
    height: 46px;
  }
 
  .sab-icon {
    font-size: 1.05rem;
  }
}
 
/* Mobile (≤ 767px) — move to bottom-right, no labels, icon-only pills */
@media (max-width: 767px) {
  .side-action-bar {
    /* Re-orient to a horizontal row at the bottom */
    top: auto;
    bottom: 100px; /* sits above the floating CTA button */
    right: 16px;
    transform: none;
    flex-direction: column;
    border-radius: 14px 0 0 14px;
    padding: 8px 0;
    gap: 2px;
  }
 
  .sab-btn,
  .sab-icon {
    width: 42px;
    height: 42px;
  }
 
  .sab-icon {
    font-size: 1rem;
  }
 
  /* Hide slide-out labels on mobile — icons only */
  .sab-label {
    display: none;
  }
 
  /* Remove left accent line on mobile (too small) */
  .sab-btn::before {
    display: none;
  }
}
 
/* Very small screens (≤ 400px) */
@media (max-width: 400px) {
  .side-action-bar {
    bottom: 90px;
    right: 12px;
  }
 
  .sab-btn,
  .sab-icon {
    width: 38px;
    height: 38px;
  }
 
  .sab-icon {
    font-size: 0.95rem;
  }
}
 
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
 
/* Fix: container-fluid + px-4 exceeds viewport on mobile */
@media (max-width: 991px) {
  #mainNav .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100%;
  }
}






/* ═══════════════════════════════════════════════════
   BUILD JOURNEY SECTION
   ═══════════════════════════════════════════════════ */

.bj2-section {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.bj2-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,147,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,58,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bj2-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.bj2-header { text-align: center; margin-bottom: 80px; }

.bj2-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.bj2-label::before, .bj2-label::after {
  content: ''; width: 24px; height: 1px;
  background: var(--gold); opacity: 0.5;
}

.bj2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 14px;
}

.bj2-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1rem; max-width: 520px;
  margin: 0 auto; line-height: 1.75;
}

/* ── Spine ── */
.bj2-timeline { position: relative; }

.bj2-spine {
  position: absolute;
  left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,147,58,0.25) 6%,
    rgba(201,147,58,0.25) 94%,
    transparent
  );
  transform: translateX(-50%);
}

/* ── Row layout ── */
.bj2-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 64px;
  gap: 0;
}
.bj2-row:last-child { margin-bottom: 0; }

/* ── Node ── */
.bj2-node-col {
  display: flex; align-items: center;
  justify-content: center;
}

.bj2-node {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; flex-shrink: 0;
  box-shadow: 0 0 0 7px rgba(201,147,58,0.08),
              0 0 0 14px rgba(201,147,58,0.04);
  transition: var(--transition);
}
.bj2-node:hover {
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(201,147,58,0.14),
              0 0 36px rgba(201,147,58,0.35);
}

.bj2-node-icon {
  font-size: 1.45rem; color: var(--gold);
  transition: var(--transition);
}
.bj2-node:hover .bj2-node-icon { color: var(--navy-dark); }

.bj2-node--final {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 9px rgba(201,147,58,0.14),
              0 0 48px rgba(201,147,58,0.4);
}
.bj2-node--final .bj2-node-icon { color: var(--navy-dark); }

/* ── Card sides ── */
.bj2-card-side     { padding: 0 28px 0 0; }
.bj2-card-side--right { padding: 0 0 0 28px; }

.bj2-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,147,58,0.14);
  border-radius: 12px;
  padding: 28px 30px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.bj2-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s ease;
}
.bj2-card--right::after { transform-origin: right; }
.bj2-card:hover {
  border-color: rgba(201,147,58,0.32);
  background: rgba(201,147,58,0.05);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.bj2-card:hover::after { transform: scaleX(1); }

.bj2-card--final {
  border-color: rgba(201,147,58,0.32);
  background: rgba(201,147,58,0.06);
}

.bj2-phase-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75; margin-bottom: 7px;
}
.bj2-phase-num--final { opacity: 1; }

.bj2-phase-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 11px;
}
.bj2-phase-title--gold { color: var(--gold); }

.bj2-phase-desc {
  font-size: 0.87rem; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 16px;
}

.bj2-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.bj2-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,147,58,0.1);
  border: 1px solid rgba(201,147,58,0.22);
  padding: 4px 11px; border-radius: 20px;
}

/* ── Image sides ── */
.bj2-img-side      { padding: 0 0 0 28px; }
.bj2-img-side--left { padding: 0 28px 0 0; }

.bj2-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,147,58,0.15);
  box-shadow: 0 16px 56px rgba(0,0,0,0.4);
}
.bj2-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s ease;
  filter: brightness(0.9) saturate(1.05);
}
.bj2-img-wrap:hover img { transform: scale(1.06); }

/* Gold corner accents */
.bj2-img-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 12px 0 0 0;
  z-index: 2; pointer-events: none;
}
.bj2-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 48px; height: 48px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 12px 0;
  z-index: 2; pointer-events: none;
}

.bj2-img-wrap--final {
  border-color: rgba(201,147,58,0.35);
}

/* Phase badge on image */
.bj2-img-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  background: rgba(14,24,41,0.85);
  border: 1px solid rgba(201,147,58,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px; padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.bj2-img-badge--final {
  background: rgba(201,147,58,0.92);
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* Placeholder shown when image is missing */
.bj2-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(27,42,74,0.5);
}
.bj2-img-placeholder .ph-icon {
  font-size: 2.2rem; color: rgba(201,147,58,0.3);
}
.bj2-img-placeholder .ph-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.bj2-img-placeholder .ph-file {
  font-family: monospace; font-size: 0.7rem;
  color: rgba(201,147,58,0.4); letter-spacing: 0.04em;
}

/* ── Responsive: Tablet ── */
@media (max-width: 991px) {
  .bj2-row { grid-template-columns: 1fr 60px 1fr; }
  .bj2-node { width: 58px; height: 58px; }
  .bj2-node-icon { font-size: 1.2rem; }
  .bj2-card-side      { padding-right: 18px; }
  .bj2-card-side--right { padding-left: 18px; }
  .bj2-img-side      { padding-left: 18px; }
  .bj2-img-side--left { padding-right: 18px; }
  .bj2-card { padding: 22px 24px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 700px) {
  .bj2-section { padding: 64px 0; }
  .bj2-header { margin-bottom: 52px; }
  .bj2-spine { left: 20px; transform: none; }

  .bj2-row {
    display: flex; flex-direction: column;
    gap: 0; margin-bottom: 48px;
    position: relative; padding-left: 58px;
  }

  .bj2-node-col {
    position: absolute; left: 0; top: 0;
    width: 42px; height: 42px;
  }
  .bj2-node {
    width: 42px; height: 42px;
    box-shadow: 0 0 0 5px rgba(201,147,58,0.1);
  }
  .bj2-node-icon { font-size: 1rem; }

  .bj2-card-side,
  .bj2-card-side--right {
    padding: 0; order: 1; width: 100%;
  }
  .bj2-img-side,
  .bj2-img-side--left {
    padding: 0; order: 2; width: 100%;
    margin-top: 14px;
  }
  .bj2-img-wrap { aspect-ratio: 16/9; }
  .bj2-card { padding: 18px 20px; }
}

@media (max-width: 400px) {
  .bj2-row { padding-left: 50px; }
  .bj2-node { width: 36px; height: 36px; }
  .bj2-node-icon { font-size: 0.9rem; }
}