/* ============================================================
   BS Building Solutions — styles.css
   Brand orange (sampled from logo): #973F0B  (dark rust/sienna)
   Brand charcoal (logo BS letters): #2C2C2C
   Font: Exo 2 (closest to NeuropoliticalRg)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #322C28;
  --blue-mid:   #47403B;
  --blue-light: #F4F0EC;
  --orange:     #C05A16;
  --orange-dk:  #9E4710;
  --orange-lt:  #D46B22;
  --white:      #ffffff;
  --warm-white: #FAF8F5;
  --gray-light: #f5f5f5;
  --gray:       #6b7280;
  --gray-dark:  #374151;
  --text:       #1f2937;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Exo 2', sans-serif;
  color: var(--blue);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem,   5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { max-width: 72ch; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .85em 2em;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,90,22,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); transform: translateY(-2px); }

.btn-dark {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ── Section helpers ──────────────────────────────────────── */
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  color: var(--gray);
  margin: .75rem auto 0;
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.13);
  border-bottom: 3px solid var(--orange);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  width: min(1280px, 100%);
  margin-inline: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.logo-text { display: none; }
.logo-slogan { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--gray-dark);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .6em 1.5em;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 1rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dk) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,90,22,.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e5e5e5;
  padding: 1.2rem 1.5rem 1.5rem;
  gap: .2rem;
}
.mobile-nav a {
  color: var(--gray-dark);
  font-weight: 700;
  font-size: 1.05rem;
  padding: .7rem 0;
  border-bottom: 1px solid #eee;
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav.open { display: flex; }

/* ── Page offset for fixed navbar ────────────────────────── */
.page-top { padding-top: 92px; }

/* ── HERO CAROUSEL ────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

/* Remove the default page-top padding for the carousel page */
.hero-carousel + * { }

/* Slides */
.hc-track { position: absolute; inset: 0; }

.hc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1),
              transform 6s cubic-bezier(.25,.46,.45,.94);
}
.hc-slide.active { opacity: 1; transform: scale(1); }

.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.25) 50%,
    rgba(0,0,0,.72) 100%
  );
}

/* Logo watermark per slide */
.hc-watermark {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  width: 240px;
  opacity: .38;
  pointer-events: none;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
  animation: hc-float 4s ease-in-out infinite;
}
.hc-watermark img {
  width: 100%;
  filter: brightness(0) invert(1);
}

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

/* Project caption tag */
.hc-caption {
  position: absolute;
  bottom: 1.75rem;
  left: 2rem;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(0,0,0,.4);
  padding: .35em 1em;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* Fixed content over all slides */
.hc-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 92px;
  z-index: 5;
}

.hc-content .container { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(192,90,22,.25);
  border: 1px solid rgba(192,90,22,.5);
  color: #f4b683;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4em 1.1em;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hc-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hc-content h1 .accent { color: var(--orange-lt); }

.hc-content p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 52ch;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }

.btn-lg { padding: 1em 2.2em; font-size: 1rem; }

.btn-phone {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  backdrop-filter: blur(4px);
}
.btn-phone:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.hero-trust span {
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Carousel arrows */
.hc-prev, .hc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s;
}
.hc-prev:hover, .hc-next:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-50%) scale(1.08);
}
.hc-prev { left: 1.5rem; }
.hc-next { right: 1.5rem; }

/* Dot indicators */
.hc-dots {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  display: flex;
  gap: .55rem;
  z-index: 10;
}
.hc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hc-dot.active { background: var(--white); transform: scale(1.3); }

/* ── TRUST BAND ───────────────────────────────────────────── */
.trust-band {
  background: var(--blue);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--orange);
}
.trust-band-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--white);
}
.tb-item svg { color: var(--orange); flex-shrink: 0; }
.tb-item div { display: flex; flex-direction: column; line-height: 1.3; }
.tb-item strong { font-size: .95rem; font-weight: 700; }
.tb-item span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ── OUR PROCESS ──────────────────────────────────────────── */
.process-section { padding: 5rem 0; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
  font-family: 'Exo 2', sans-serif;
}
.process-step h3 { color: var(--white); margin-bottom: .6rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .92rem; max-width: none; }

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.process-arrow svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .process-arrow { display: none; }
  .process-steps { gap: 2rem; }
  .process-step { max-width: 100%; }
}

/* ── WHY-GRID icon update ─────────────────────────────────── */
.why-icon svg { width: 32px; height: 32px; color: var(--orange); }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--blue-light);
}
.card-img-wrap .img-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  gap: .4rem;
}
.card-img-wrap .img-placeholder svg { width: 48px; height: 48px; }

.card-icon {
  position: absolute;
  bottom: -20px;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(192,90,22,.4);
}

.card-body {
  padding: 1.75rem 1.25rem 1.5rem;
}
.card-body h3 { margin-bottom: .5rem; }
.card-body p  { color: var(--gray); font-size: .93rem; margin-bottom: 1rem; }
.card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .6rem; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-top: .4rem;
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item {
  display: flex;
  gap: 1rem;
}
.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.why-item h4 { margin-bottom: .3rem; }
.why-item p  { color: var(--gray); font-size: .93rem; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--orange);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--orange); margin-bottom: .75rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray-dark); font-style: italic; margin-bottom: 1.25rem; font-size: .97rem; }
.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; color: var(--blue); font-size: .95rem; }
.reviewer-info span  { color: var(--gray); font-size: .82rem; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.9); max-width: 55ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons   { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── GALLERY GRID ─────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5em 1.3em;
  border: 2px solid var(--blue);
  border-radius: 50px;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item .img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  gap: .4rem;
}
.gallery-item .img-placeholder svg { width: 40px; height: 40px; }
.gallery-item .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.item-overlay {
  flex-direction: column;
  gap: .35rem;
  justify-content: flex-end;
}
.item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}
.item-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2em .65em;
  border-radius: 4px;
  width: fit-content;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery-item--featured img {
  height: 360px;
}
.gallery-item--featured {
  grid-column: span 2;
}
@media (max-width: 640px) {
  .gallery-item--featured { grid-column: span 1; }
  .gallery-item--featured img { height: 280px; }
}

/* ── BEFORE / AFTER CAROUSEL ─────────────────────────────── */
.ba-section {
  padding: 5rem 0;
  background: var(--warm-white);
}

.ba-carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.ba-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition);
}
.ba-nav-btn:hover { background: var(--blue); color: var(--white); }
.ba-prev { left: -22px; }
.ba-next { right: -22px; }

.ba-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.ba-carousel::-webkit-scrollbar { display: none; }

.ba-carousel-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.ba-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 0.2rem;
}

.ba-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-lg);
  height: 260px;
  background: #111;
}

.ba-before-img,
.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-after-img {
  clip-path: inset(0 50% 0 0);
}

/* Logo flutuante nos cards before/after */
.ba-logo-float {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 72px;
  opacity: .32;
  z-index: 3;
  pointer-events: none;
  animation: hc-float 4s ease-in-out infinite;
}
.ba-logo-float img {
  width: 100%;
  filter: brightness(0) invert(1);
  display: block;
}

.ba-tag {
  position: absolute;
  top: 10px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: 10px; }
.ba-tag-after  { right: 10px; }

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 4;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.ba-slider:hover .ba-handle,
.ba-slider:focus .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.ba-handle svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  stroke: var(--blue);
}

@media (max-width: 768px) {
  .ba-carousel-card { flex: 0 0 260px; }
  .ba-prev { left: -10px; }
  .ba-next { right: -10px; }
}

@media (max-width: 480px) {
  .ba-carousel-card { flex: 0 0 calc(100vw - 3rem); }
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.about-hero h1 { color: var(--white); margin-bottom: .75rem; }
.about-hero p  { color: rgba(255,255,255,.8); max-width: 60ch; margin: 0 auto; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-img {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img .img-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  gap: .6rem;
}
.story-img .img-placeholder svg { width: 64px; height: 64px; }

.story-text .section-label { margin-bottom: .6rem; }
.story-text h2 { margin-bottom: 1rem; }
.story-text p  { color: var(--gray-dark); margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-5px); }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p  { color: var(--gray); font-size: .9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
}
.team-card h4 { color: var(--blue); margin-bottom: .25rem; }
.team-card .role { color: var(--orange); font-size: .85rem; font-weight: 600; margin-bottom: .5rem; display: block; }
.team-card p   { color: var(--gray); font-size: .88rem; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.contact-hero h1 { color: var(--white); margin-bottom: .75rem; }
.contact-hero p  { color: rgba(255,255,255,.8); max-width: 55ch; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.info-item h4 { margin-bottom: .2rem; font-size: 1rem; }
.info-item p  { color: var(--gray); font-size: .93rem; max-width: none; }
.info-item a  { color: var(--orange); font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

.map-placeholder {
  height: 220px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .88rem;
  gap: .5rem;
  border: 2px dashed rgba(26,58,92,.2);
  margin-top: 2rem;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--blue); opacity: .4; }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  transition: var(--transition);
  font-weight: 700;
  font-size: .8rem;
}
.social-link:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ── FOOTER SOCIAL ICONS ──────────────────────────────────── */
.footer-social-icons {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  transition: background .2s, color .15s, transform .15s;
  text-decoration: none;
}
.footer-social-btn:hover { transform: translateY(-2px); color: #fff; }
.footer-social-btn--ig:hover { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.footer-social-btn--fb:hover { background: #1877f2; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; color: var(--blue); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-dark);
  margin-bottom: .4rem;
}
.form-group label span.req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,92,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; padding: 1em; font-size: 1rem; }

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: .82rem;
  margin-top: .75rem;
}

/* ── SERVICES DETAIL PAGE ────────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.services-hero h1 { color: var(--white); margin-bottom: .75rem; }
.services-hero p  { color: rgba(255,255,255,.8); max-width: 60ch; margin: 0 auto; }

.service-detail {
  padding: 5rem 0;
}
.service-detail:nth-child(even) { background: var(--gray-light); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img .img-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  gap: .6rem;
}
.service-detail-img .img-placeholder svg { width: 64px; height: 64px; }

.service-detail-text .section-label { margin-bottom: .6rem; }
.service-detail-text h2 { margin-bottom: 1rem; }
.service-detail-text p  { color: var(--gray-dark); margin-bottom: 1rem; }

.service-features {
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: var(--gray-dark);
  font-size: .93rem;
}
.service-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--blue);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-about .logo { margin-bottom: 1rem; }
.footer-about p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 1.25rem; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: .6rem;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--orange); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Floating phone CTA ───────────────────────────────────── */
.float-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--orange);
  color: var(--white);
  padding: .85rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(192,90,22,.5);
  animation: pulse 2.5s infinite;
  transition: background var(--transition), transform var(--transition);
}
.float-phone:hover { background: var(--orange-dk); transform: scale(1.05); }
.float-phone svg { width: 20px; height: 20px; }

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(192,90,22,.5); }
  50%      { box-shadow: 0 6px 32px rgba(192,90,22,.75); }
}

/* ── Page-hero shared ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 58ch; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.sep { color: rgba(255,255,255,.3); }

/* ── Animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .story-grid,
  .contact-grid,
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .story-img,
  .service-detail-img { height: 280px; }
  .hero-image-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .float-phone  { bottom: 1rem; right: 1rem; padding: .75rem 1.1rem; font-size: .85rem; }
  .service-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ── SERVICE AREA MAP SECTION ───────────────────────────────── */
.map-section { background: var(--white); border-top: 1px solid #e8e3dd; }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
}
.map-text h2 { margin-bottom: 1rem; }
.map-text > p { color: var(--gray); }
.map-cities {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.map-cities li {
  color: var(--gray-dark);
  font-size: .9rem;
  padding-left: 1.1rem;
  position: relative;
}
.map-cities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe { display: block; }
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-embed iframe { height: 300px; }
}
