/* ============================================================
   MrLogBook — Custom Styles (mlb- prefixed, original code)
   Color: Navy #0f2027 | Gold #c8a44a | White
   Font: Muli (Google Fonts)
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Muli', sans-serif; color: #e0d8cc; background: #1f1a11; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Variables ──────────────────────────────────────────── */
:root {
  --mlb-navy:        #0f2027;
  --mlb-navy-light:  #203a43;
  --mlb-navy-mid:    #2c5364;
  --mlb-green:        #25D366;
  --mlb-green-light:  #3edd78;
  --mlb-white:       #1f1a11;
  --mlb-offwhite:    #2a231a;
  --mlb-gray:        #9a918a;
  --mlb-lightgray:   #3a342c;
  --mlb-shadow:      0 4px 24px rgba(0,0,0,0.12);
  --mlb-radius:      12px;
  --mlb-radius-lg:   20px;
  --mlb-transition:  all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── Typography ──────────────────────────────────────────── */
.mlb-h1, .mlb-h2, .mlb-h3, .mlb-h4 { font-weight: 800; line-height: 1.2; color: #f5f0e8; }
.mlb-h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.mlb-h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.mlb-h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.mlb-text-gold { color: var(--mlb-green); }
.mlb-text-white { color: var(--mlb-white); }
.mlb-text-center { text-align: center; }
.mlb-para { font-size: 1.05rem; color: #555; line-height: 1.75; }
.mlb-para-light { color: rgba(255,255,255,0.8); }

/* ── Layout ─────────────────────────────────────────────── */
.mlb-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.mlb-section { padding: 5rem 0; }
.mlb-section--dark { background: var(--mlb-navy); color: var(--mlb-white); }
.mlb-section--light { background: var(--mlb-offwhite); }
.mlb-section--white { background: var(--mlb-white); }
.mlb-section-header { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.mlb-section-header .mlb-h2 { margin-bottom: 0.75rem; }
.mlb-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.mlb-col-2 { flex: 0 0 calc(50% - 0.75rem); }
.mlb-col-3 { flex: 0 0 calc(33.333% - 1rem); }
.mlb-col-4 { flex: 0 0 calc(25% - 1.125rem); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes mlbFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mlbFloatCar {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25%       { transform: translateX(-12px) rotate(-0.5deg); }
  75%       { transform: translateX(12px) rotate(0.5deg); }
}
@keyframes mlbSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mlbCountBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
@keyframes mlbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,74,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(200,164,74,0); }
}
@keyframes mlbShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes mlbSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mlbScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.mlb-animate { opacity: 0; }
.mlb-animate.is-visible { animation: mlbFadeInUp 0.7s ease forwards; }
.mlb-delay-1 { animation-delay: 0.1s; }
.mlb-delay-2 { animation-delay: 0.2s; }
.mlb-delay-3 { animation-delay: 0.3s; }
.mlb-delay-4 { animation-delay: 0.4s; }

/* ── Navigation ─────────────────────────────────────────── */
.mlb-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: var(--mlb-transition);
}
.mlb-navbar.is-scrolled {
  background: var(--mlb-navy);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.mlb-navbar .mlb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mlb-nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.mlb-nav-logo img { height: 56px; width: auto; }
.mlb-nav-logo .mlb-logo-text { font-size: 1.3rem; font-weight: 900; color: var(--mlb-white); letter-spacing: -0.5px; }
.mlb-nav-logo .mlb-logo-text span { color: var(--mlb-green); }
.mlb-nav-links { display: flex; align-items: center; gap: 2rem; }
.mlb-nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
}
.mlb-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--mlb-green);
  transition: width 0.25s;
}
.mlb-nav-links a:hover { color: var(--mlb-white); }
.mlb-nav-links a:hover::after { width: 100%; }
.mlb-nav-links a.is-active { color: var(--mlb-green); }
.mlb-nav-cta { display: flex; align-items: center; gap: 1rem; }
.mlb-nav-phone {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mlb-nav-phone:hover { color: var(--mlb-green); }
.mlb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.mlb-hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--mlb-white);
  border-radius: 2px;
  transition: var(--mlb-transition);
}
.mlb-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mlb-hamburger.is-open span:nth-child(2) { opacity: 0; }
.mlb-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile menu */
.mlb-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--mlb-navy);
  z-index: 1040;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: mlbFadeInUp 0.3s ease;
}
.mlb-mobile-menu.is-open { display: flex; }
.mlb-mobile-menu a {
  color: var(--mlb-white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.mlb-mobile-menu a:hover { color: var(--mlb-green); }
.mlb-mobile-menu .mlb-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--mlb-white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Promo Bar ──────────────────────────────────────────── */
.mlb-promo-bar {
  background: var(--mlb-green);
  color: var(--mlb-navy);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 72px; /* offset for fixed navbar */
  letter-spacing: 0.3px;
}
.mlb-promo-bar strong { font-weight: 900; }

/* ── Hero ───────────────────────────────────────────────── */
.mlb-hero {
  background: linear-gradient(135deg, var(--mlb-navy) 0%, var(--mlb-navy-light) 55%, var(--mlb-navy-mid) 100%);
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
/* Geometric grid background pattern */
.mlb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(39,139,80,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(39,139,80,0.07) 0%, transparent 45%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}
.mlb-hero > .mlb-container,
.mlb-hero > .mlb-hero-bg + .mlb-container { position: relative; z-index: 1; }

/* Floating car badge — subtle vertical bob */
.mlb-hero-car-badge {
  animation: mlbFloatBadge 4s ease-in-out infinite;
}
@keyframes mlbFloatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.mlb-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(44,83,100,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.mlb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39,139,80,0.15);
  border: 1px solid rgba(39,139,80,0.4);
  color: #5fca8c;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.mlb-hero-badge i { color: #ffc107; font-size: 0.8rem; }
.mlb-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.mlb-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}
.mlb-hero-trust span i { color: var(--mlb-green); font-size: 0.9rem; }

/* Hero suburb search strip */
.mlb-hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  margin-bottom: 1.25rem;
  max-width: 440px;
}
.mlb-hero-search i { color: var(--mlb-green); font-size: 1.1rem; flex-shrink: 0; }
.mlb-hero-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  flex: 1;
  min-width: 0;
}
.mlb-hero-search input::placeholder { color: rgba(255,255,255,0.45); }
.mlb-hero-search button {
  background: var(--mlb-green);
  color: #fff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.mlb-hero-search button:hover { background: #238c4d; }

/* Hero car image */
.mlb-hero-image {
  position: relative;
  flex: 0 0 44%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mlb-hero-car {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  animation: mlbFloatCar 5s ease-in-out infinite;
  object-fit: cover;
  height: 320px;
}
.mlb-hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
}
.mlb-hero .mlb-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.mlb-hero-content { flex: 1; animation: mlbSlideIn 0.9s ease; }
.mlb-hero-content .mlb-h1 {
  color: var(--mlb-white);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.mlb-hero-content .mlb-h1 .mlb-text-gold { display: block; }
.mlb-hero-content .mlb-para {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.mlb-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.mlb-hero-visual { flex: 0 0 45%; display: flex; justify-content: center; align-items: center; }

/* Hero car illustration */
.mlb-car-illustration {
  width: 100%;
  max-width: 520px;
  animation: mlbFloatCar 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.mlb-hero-sub {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.mlb-hero-sub-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
}
.mlb-hero-sub-item i { color: var(--mlb-green); font-size: 1.1rem; }

/* ── Buttons ────────────────────────────────────────────── */
.mlb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--mlb-transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.mlb-btn--gold {
  background: var(--mlb-green);
  color: var(--mlb-navy);
  border-color: var(--mlb-green);
}
.mlb-btn--gold:hover {
  background: var(--mlb-green-light);
  border-color: var(--mlb-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,164,74,0.35);
}
.mlb-btn--outline {
  background: transparent;
  color: var(--mlb-white);
  border-color: rgba(255,255,255,0.4);
}
.mlb-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--mlb-white);
  color: var(--mlb-white);
  transform: translateY(-2px);
}
.mlb-btn--primary {
  background: var(--mlb-navy);
  color: var(--mlb-white);
  border-color: var(--mlb-navy);
}
.mlb-btn--primary:hover {
  background: var(--mlb-navy-light);
  border-color: var(--mlb-navy-light);
  transform: translateY(-2px);
}
.mlb-btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.mlb-btn--sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.mlb-btn--block { display: flex; width: 100%; }
.mlb-btn--success { background: #28a745; color: #fff; border-color: #28a745; }
.mlb-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ── Trust Bar / Stats ──────────────────────────────────── */
.mlb-stats { padding: 3rem 0; background: var(--mlb-white); }
.mlb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.mlb-stat-item { padding: 1rem; }
.mlb-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mlb-navy);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.mlb-stat-number .mlb-text-gold { color: var(--mlb-green); }
.mlb-stat-label { font-size: 0.9rem; font-weight: 600; color: var(--mlb-gray); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Cards ──────────────────────────────────────────────── */
.mlb-card {
  background: var(--mlb-white);
  border-radius: var(--mlb-radius);
  padding: 2rem;
  box-shadow: var(--mlb-shadow);
  transition: var(--mlb-transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.mlb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.mlb-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--mlb-navy) 0%, var(--mlb-navy-mid) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  color: var(--mlb-green);
}
.mlb-card .mlb-h3 { margin-bottom: 0.75rem; }
.mlb-card .mlb-para { font-size: 0.95rem; }

/* Service cards grid */
.mlb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Individual Service Card ──────────────────────────────── */
.mlb-service-card {
  background: var(--mlb-white);
  border: 1px solid var(--mlb-lightgray);
  border-radius: var(--mlb-radius);
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.mlb-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.18);
  border-color: var(--mlb-green);
}
.mlb-service-card .mlb-service-icon {
  width: 52px; height: 52px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--mlb-green);
  margin-bottom: 1.25rem;
  transition: background 0.25s ease;
}
.mlb-service-card:hover .mlb-service-icon {
  background: var(--mlb-green);
  color: var(--mlb-white);
}

/* ── Why Choose Us ─────────────────────────────────────── */
.mlb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mlb-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--mlb-radius);
  border: 1px solid rgba(200,164,74,0.2);
  transition: var(--mlb-transition);
}
.mlb-benefit-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.mlb-benefit-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--mlb-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--mlb-navy);
}
.mlb-benefit-text .mlb-h4 {
  color: var(--mlb-white);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.mlb-benefit-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── How It Works ──────────────────────────────────────── */
.mlb-steps { display: flex; gap: 2rem; position: relative; }
.mlb-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.666% + 24px); right: calc(16.666% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--mlb-green) 0%, var(--mlb-green-light) 50%, var(--mlb-green) 100%);
  z-index: 0;
}
.mlb-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.mlb-step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--mlb-navy);
  border: 3px solid var(--mlb-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mlb-green);
  animation: mlbCountBounce 2s ease-in-out infinite;
}
.mlb-step-number span { color: var(--mlb-white); font-size: 1.6rem; }
.mlb-step .mlb-h3 { color: var(--mlb-navy); margin-bottom: 0.5rem; }
.mlb-step .mlb-para { color: var(--mlb-gray); font-size: 0.95rem; }

/* ── Gallery Carousel ───────────────────────────────────── */
.mlb-gallery { }
.mlb-carousel-wrap {
  border-radius: var(--mlb-radius-lg);
  overflow: hidden;
  box-shadow: var(--mlb-shadow);
}
/* Gallery Carousel — full image, 3D animation */
#galleryCarousel {
  perspective: 1200px;
}
#galleryCarousel .carousel-inner { border-radius: 16px; overflow: hidden; }
#galleryCarousel .carousel-item {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
  transform-style: preserve-3d;
}
#galleryCarousel .carousel-item img {
  height: 480px;
  object-fit: contain;
  width: 100%;
  background: #111;
}
#galleryCarousel .carousel-item-next.carousel-item-start,
#galleryCarousel .carousel-item-prev.carousel-item-end {
  transform: rotateY(15deg) scale(0.95);
  opacity: 0;
}
#galleryCarousel .carousel-item-next,
#galleryCarousel .carousel-item-prev,
#galleryCarousel .carousel-item.active {
  transform: rotateY(0deg) scale(1);
}
#galleryCarousel .carousel-item-next,
#galleryCarousel .active.carousel-item-end {
  transform: rotateY(-15deg) scale(0.95) translateZ(-40px);
  opacity: 0;
}
#galleryCarousel .carousel-item-prev,
#galleryCarousel .active.carousel-item-start {
  transform: rotateY(15deg) scale(0.95) translateZ(-40px);
  opacity: 0;
}
#galleryCarousel .carousel-caption {
  background: rgba(15,32,39,0.82);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem; right: 1.5rem;
  backdrop-filter: blur(4px);
}
#galleryCarousel .carousel-caption h5 { font-weight: 800; font-size: 1.1rem; color: #fff; }
#galleryCarousel .carousel-caption p { margin: 0; font-size: 0.85rem; opacity: 0.85; color: rgba(255,255,255,0.9); }
#galleryCarousel .carousel-indicators { bottom: 0.5rem; }
#galleryCarousel .carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: all 0.3s;
}
#galleryCarousel .carousel-indicators button.active {
  background: var(--mlb-green);
  transform: scale(1.3);
}
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
  width: auto; padding: 1rem;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon {
  background: var(--mlb-navy);
  border-radius: 50%;
  padding: 1.2rem;
}

/* Gallery grid — hover zoom + lightbox */
.gallery-grid-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
}
.gallery-grid-img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--mlb-green);
}

/* Lightbox overrides */
.lb-dataContainer { width: 100%; }
.lb-data .lb-caption { font-size: 1rem; font-weight: 600; color: #f5f0e8; }
.lb-data .lb-number { color: #9a918a; }
}

/* ── Areas We Serve ─────────────────────────────────────── */
.mlb-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}
.mlb-areas-col {
  flex: 1 1 280px;
  min-width: 0;
}
.mlb-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mlb-area-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--mlb-white);
  border: 2px solid var(--mlb-lightgray);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mlb-navy);
  transition: var(--mlb-transition);
  white-space: nowrap;
}
.mlb-area-tag:hover {
  background: var(--mlb-green);
  border-color: var(--mlb-green);
  color: var(--mlb-navy);
  transform: translateY(-2px);
}

/* ── Testimonials ───────────────────────────────────────── */
.mlb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mlb-testimonial {
  background: var(--mlb-white);
  border-radius: var(--mlb-radius);
  padding: 2rem;
  box-shadow: var(--mlb-shadow);
  border-left: 4px solid var(--mlb-green);
  transition: var(--mlb-transition);
}
.mlb-testimonial:hover { transform: translateY(-4px); }
.mlb-testimonial-stars { color: var(--mlb-green); font-size: 1.1rem; margin-bottom: 1rem; }
.mlb-testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}
.mlb-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.mlb-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mlb-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mlb-green);
  font-weight: 900;
  font-size: 1rem;
}
.mlb-testimonial-name { font-weight: 700; color: var(--mlb-navy); font-size: 0.95rem; }
.mlb-testimonial-loc { font-size: 0.82rem; color: var(--mlb-gray); }

/* ── Appointment CTA ────────────────────────────────────── */
.mlb-cta-section {
  background: linear-gradient(135deg, var(--mlb-navy) 0%, var(--mlb-navy-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.mlb-cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,164,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mlb-cta-inner { display: flex; align-items: center; gap: 3rem; }
.mlb-cta-content { flex: 1; }
.mlb-cta-content .mlb-h2 { color: var(--mlb-white); margin-bottom: 0.75rem; }
.mlb-cta-content .mlb-para { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.mlb-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--mlb-green);
  margin-bottom: 1.5rem;
}
.mlb-cta-visual { flex: 0 0 40%; display: flex; justify-content: center; }

/* ── Newsletter + App ───────────────────────────────────── */
.mlb-newsletter-section {
  background: linear-gradient(135deg, var(--mlb-navy) 0%, var(--mlb-navy-light) 60%, var(--mlb-navy-mid) 100%);
  padding: 4rem 0;
}
.mlb-newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mlb-newsletter-box {
  padding: 2.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--mlb-radius-lg);
  border: 1px solid rgba(200,164,74,0.25);
  color: var(--mlb-white);
}
.mlb-newsletter-box .mlb-box-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
}
.mlb-newsletter-box .mlb-box-title i { color: var(--mlb-green); font-size: 1.6rem; }
.mlb-newsletter-box .mlb-para { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 0.95rem; }
.mlb-subscribe-form { display: flex; gap: 0; }
.mlb-subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px 0 0 8px;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255,255,255,0.9);
}
.mlb-subscribe-form input[type="email"]:focus { outline: 2px solid var(--mlb-green); }
.mlb-subscribe-form button {
  padding: 0.75rem 1.5rem;
  background: var(--mlb-green);
  color: var(--mlb-navy);
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--mlb-transition);
  white-space: nowrap;
}
.mlb-subscribe-form button:hover { background: var(--mlb-green-light); }
.mlb-app-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.mlb-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,164,74,0.4);
  border-radius: 12px;
  color: var(--mlb-white);
  transition: var(--mlb-transition);
}
.mlb-app-btn:hover { background: rgba(255,255,255,0.2); border-color: var(--mlb-green); color: var(--mlb-white); transform: translateY(-2px); }
.mlb-app-btn i { font-size: 1.5rem; color: var(--mlb-green); }
.mlb-app-btn-text .mlb-app-store-label { font-size: 0.65rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }
.mlb-app-btn-text .mlb-app-store-name { font-weight: 800; font-size: 0.95rem; }
.mlb-privacy-note { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }
.mlb-privacy-note i { margin-right: 0.25rem; }

/* ── Footer ────────────────────────────────────────────── */
.mlb-footer {
  background: #0a161e;
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 0;
}
.mlb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mlb-footer-brand .mlb-footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem; font-weight: 900; color: var(--mlb-white);
}
.mlb-footer-brand .mlb-footer-logo img { height: 40px; }
.mlb-footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.mlb-footer h4 {
  color: var(--mlb-white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mlb-footer-links li { margin-bottom: 0.5rem; }
.mlb-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.mlb-footer-links a:hover { color: var(--mlb-green); }
.mlb-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.mlb-footer-contact i { color: var(--mlb-green); margin-top: 3px; flex-shrink: 0; }
.mlb-footer-contact a { color: rgba(255,255,255,0.7); }
.mlb-footer-contact a:hover { color: var(--mlb-green); }
.mlb-footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mlb-footer-hours li:last-child { border-bottom: none; }
.mlb-footer-hours .mlb-day { color: rgba(255,255,255,0.5); }
.mlb-footer-hours .mlb-time { color: var(--mlb-green); font-weight: 700; }
.mlb-footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.mlb-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--mlb-transition);
}
.mlb-footer-social a:hover { background: var(--mlb-green); color: var(--mlb-navy); }
.mlb-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.mlb-footer-bottom a { color: rgba(255,255,255,0.5); }
.mlb-footer-bottom a:hover { color: var(--mlb-green); }

/* ── Sticky Mobile CTA ──────────────────────────────────── */
.mlb-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  background: var(--mlb-navy);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mlb-sticky-cta .mlb-btn { flex: 1; justify-content: center; font-size: 0.9rem; padding: 0.7rem; }

/* ── Modal ──────────────────────────────────────────────── */
.mlb-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mlb-modal.is-open { opacity: 1; visibility: visible; }
.mlb-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  backdrop-filter: blur(4px);
}
.mlb-modal-content {
  background: var(--mlb-white);
  border-radius: var(--mlb-radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  z-index: 9999;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}
.mlb-modal.is-open .mlb-modal-content {
  transform: translateY(0) scale(1);
}
.mlb-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--mlb-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--mlb-transition);
  z-index: 1;
  border: none;
  line-height: 1;
}
.mlb-modal-close:hover { background: rgba(255,255,255,0.3); }
.mlb-modal-body { padding: 2rem; }

/* ── Forms ──────────────────────────────────────────────── */
.mlb-form-group { margin-bottom: 1.25rem; }
.mlb-form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--mlb-navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mlb-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--mlb-lightgray);
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  transition: var(--mlb-transition);
  background: var(--mlb-white);
  color: #333;
}
.mlb-form-control:focus {
  outline: none;
  border-color: var(--mlb-green);
  box-shadow: 0 0 0 3px rgba(200,164,74,0.15);
}
.mlb-form-control.is-error { border-color: #dc3545; }
.mlb-form-error {
  color: #dc3545;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.3rem;
  display: none;
}
.mlb-form-error.is-visible { display: block; }
.mlb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mlb-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L1 4h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.mlb-form-control { resize: vertical; min-height: 120px; }

/* CAPTCHA */
.mlb-captcha-group { margin: 1.25rem 0; padding: 1rem; background: var(--mlb-offwhite); border-radius: 8px; border: 1px solid var(--mlb-lightgray); }
.mlb-captcha-question { font-weight: 800; font-size: 1.1rem; color: var(--mlb-navy); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.mlb-captcha-question i { color: var(--mlb-green); }
.mlb-captcha-wrap { display: flex; align-items: center; gap: 0.75rem; }
.mlb-captcha-wrap input { max-width: 120px; }
.mlb-captcha-error { color: #dc3545; font-size: 0.82rem; font-weight: 600; margin-top: 0.3rem; display: none; }
.mlb-captcha-error.is-visible { display: block; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mlb-nav-links { display: none; }
  .mlb-hamburger { display: flex; }
  .mlb-hero .mlb-container { flex-direction: column; text-align: center; }
  .mlb-hero-content .mlb-para { margin: 0 auto 2rem; }
  .mlb-hero-cta { justify-content: center; }
  .mlb-hero-sub { justify-content: center; }
  .mlb-hero-visual { flex: none; width: 80%; }
  .mlb-services-grid { grid-template-columns: repeat(2, 1fr); }
  .mlb-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .mlb-steps { flex-direction: column; gap: 1.5rem; }
  .mlb-steps::before { display: none; }
  .mlb-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .mlb-newsletter-grid { grid-template-columns: 1fr; }
  .mlb-footer-grid { grid-template-columns: 1fr 1fr; }
  .mlb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mlb-cta-inner { flex-direction: column; text-align: center; }
  .mlb-cta-visual { flex: none; width: 60%; }
}

@media (max-width: 768px) {
  .mlb-section { padding: 3.5rem 0; }
  .mlb-services-grid { grid-template-columns: 1fr; }
  .mlb-benefits-grid { grid-template-columns: 1fr; }
  .mlb-testimonials-grid { grid-template-columns: 1fr; }
  .mlb-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mlb-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .mlb-form-row { grid-template-columns: 1fr; }
  .mlb-sticky-cta { display: flex; }
  .mlb-btn--block-mobile { display: flex; width: 100%; }
  #mlbWorkCarousel .carousel-item img { height: 280px; }
  .mlb-subscribe-form { flex-direction: column; gap: 0.5rem; }
  .mlb-subscribe-form input[type="email"],
  .mlb-subscribe-form button { border-radius: 8px; }
  .mlb-hero { min-height: auto; padding: 5rem 0 3rem; }
  .mlb-modal-box { margin: 0.5rem; max-height: 95vh; }
  .mlb-modal-body { padding: 1.5rem; }
  .mlb-modal-header { padding: 1.25rem 1.5rem; }
}

@media (max-width: 480px) {
  .mlb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .mlb-stat-number { font-size: 1.8rem; }
  .mlb-app-buttons { flex-direction: column; }
  .mlb-app-btn { justify-content: center; }
}

/* ── Scroll animations ───────────────────────────────────── */
.mlb-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mlb-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Appointment Features ───────────────────────────────── */
.mlb-section--appointment { background: linear-gradient(135deg, var(--mlb-navy) 0%, var(--mlb-navy-light) 100%); }
.mlb-appointment-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.mlb-appt-feature {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem;
}
.mlb-appt-feature i { color: var(--mlb-green); font-size: 1.1rem; flex-shrink: 0; }

/* ── App Mockup Overlay ─────────────────────────────────── */
.mlb-app-mockup { position: relative; display: inline-block; }
.mlb-app-mockup .app-overlay {
  position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  width: 68%; background: linear-gradient(135deg, #1a7f3c, #25D366);
  border-radius: 10px; padding: 0.6rem 0.75rem;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25); color: #fff;
}
.mlb-app-mockup .app-overlay .app-title { font-weight: 900; font-size: 0.8rem; }
.mlb-app-mockup .app-overlay .app-sub { font-size: 0.65rem; opacity: 0.8; margin-top: 0.15rem; }
.mlb-app-mockup .app-overlay .app-card {
  background: rgba(255,255,255,0.15); border-radius: 5px;
  margin-top: 0.4rem; padding: 0.35rem; font-size: 0.62rem; line-height: 1.4;
}

/* ── Footer logo — hide text, show only logo ──────────── */
.mlb-footer-logo { gap: 0 !important; }
.mlb-footer-logo img { height: 44px !important; }
