/* =========================================================
   BARBERSHOP — Premium Luxury Blue Theme
   ========================================================= */
:root {
  --lx-blue: #0A66C2;
  --lx-blue-dark: #1E3A8A;
  --lx-blue-soft: #E8F2FC;
  --lx-navy: #0F172A;
  --lx-slate: #475569;
  --lx-muted: #64748B;
  --lx-bg: #F8FAFC;
  --lx-white: #FFFFFF;
  --lx-border: rgba(15, 23, 42, 0.08);
  --lx-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --lx-shadow-lg: 0 20px 60px rgba(10, 102, 194, 0.15);
  --lx-radius: 18px;
  --lx-grad: linear-gradient(135deg, #0A66C2 0%, #1E3A8A 100%);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lx-navy);
  background: var(--lx-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--lx-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { color: var(--lx-slate); margin-bottom: 1rem; }
a { color: var(--lx-blue); text-decoration: none; transition: .25s; }
a:hover { color: var(--lx-blue-dark); }
img { max-width: 100%; height: auto; }
section { position: relative; }

.container-lx { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn-lx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none !important;
}

.btn-lx-primary {
  background: var(--lx-grad);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35);
}

.btn-lx-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 102, 194, 0.4);
  color: #fff !important;
}

.btn-lx-outline {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}

.btn-lx-outline:hover {
  background: #fff;
  color: var(--lx-blue) !important;
  transform: translateY(-3px);
}

.btn-lx-outline-blue {
  background: transparent;
  color: var(--lx-blue) !important;
  border: 1.5px solid var(--lx-blue);
}

.btn-lx-outline-blue:hover {
  background: var(--lx-blue);
  color: #fff !important;
  transform: translateY(-3px);
}

.btn-lx::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.35) 10%, transparent 10.01%) no-repeat 50%;
  transform: scale(10);
  opacity: 0;
  transition: transform .5s, opacity .8s;
}

.btn-lx:active::after {
  transform: scale(0);
  opacity: .3;
  transition: 0s;
}

/* ---------- Section helpers ---------- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.bg-white-lx { background: var(--lx-white); }
.bg-soft-lx { background: var(--lx-bg); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-blue);
  background: var(--lx-blue-soft);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--lx-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 56px; }

/* ---------- Header ---------- */
.lx-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 18px 0;
  transition: all .35s ease;
  background: transparent;
}

.lx-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
}

.lx-header .navbar { padding: 0; }
.lx-logo img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.lx-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: #fff !important;
  padding: 8px 14px !important;
  position: relative;
  opacity: 0.9;
}

.lx-header.scrolled .lx-nav .nav-link,
.lx-header.solid .lx-nav .nav-link {
  color: var(--lx-navy) !important;
}

.lx-nav .nav-link:hover,
.lx-nav .nav-link.active {
  opacity: 1;
  color: #fff !important;
}

.lx-header.scrolled .lx-nav .nav-link:hover,
.lx-header.scrolled .lx-nav .nav-link.active,
.lx-header.solid .lx-nav .nav-link:hover,
.lx-header.solid .lx-nav .nav-link.active {
  color: var(--lx-blue) !important;
}

.lx-nav .nav-link.active::after,
.lx-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--lx-blue);
  border-radius: 2px;
}

.lx-header:not(.scrolled):not(.solid) .lx-nav .nav-link.active::after,
.lx-header:not(.scrolled):not(.solid) .lx-nav .nav-link:hover::after {
  background: #fff;
}

.lx-phone {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  white-space: nowrap;
}

.lx-header.scrolled .lx-phone,
.lx-header.solid .lx-phone {
  color: var(--lx-navy);
}

.lx-phone i { color: var(--lx-blue); }

.lx-header .navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 4px;
}

.lx-header .navbar-toggler-icon {
  width: 28px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
  box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
}

.lx-header.scrolled .navbar-toggler-icon,
.lx-header.solid .navbar-toggler-icon {
  background: var(--lx-navy);
  box-shadow: 0 8px 0 var(--lx-navy), 0 -8px 0 var(--lx-navy);
}

@media (max-width: 991.98px) {
  .lx-header .navbar-collapse {
    background: #fff;
    border-radius: var(--lx-radius);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--lx-shadow);
  }
  .lx-header .lx-nav .nav-link,
  .lx-header:not(.scrolled) .lx-nav .nav-link {
    color: var(--lx-navy) !important;
  }
  .lx-header .lx-phone {
    color: var(--lx-navy);
    margin: 12px 0;
  }
}

/* ---------- Page Banner ---------- */
.lx-page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 100px;
}

.lx-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.85), rgba(10,102,194,.75));
}

.lx-page-banner .banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}

.lx-page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.lx-page-banner p { color: rgba(255,255,255,.85); margin: 0; }

.lx-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

.lx-breadcrumb a { color: #fff; }

/* ---------- Hero ---------- */
.lx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.lx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,23,42,.88) 0%, rgba(30,58,138,.78) 55%, rgba(10,102,194,.55) 100%);
}

.lx-hero .container { position: relative; z-index: 2; }

.lx-hero-eyebrow {
  color: #93C5FD;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.lx-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 18px;
}

.lx-hero .lead {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.lx-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.lx-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.lx-hero-visual .main-img {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  object-fit: cover;
  height: 520px;
  animation: lxFloat 6s ease-in-out infinite;
}

.lx-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.lx-shape-1 { width: 180px; height: 180px; top: -20px; right: 10%; animation: lxFloat 7s ease-in-out infinite reverse; }
.lx-shape-2 { width: 100px; height: 100px; bottom: 40px; left: 8%; animation: lxFloat 5s ease-in-out infinite; }

.lx-stat-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--lx-shadow-lg);
  min-width: 160px;
  animation: lxFadeUp .8s ease both;
}

.lx-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--lx-blue);
  line-height: 1.2;
}

.lx-stat-card span {
  font-size: 12px;
  color: var(--lx-muted);
  font-weight: 500;
}

.lx-stat-1 { top: 40px; left: 0; }
.lx-stat-2 { bottom: 80px; right: 0; }
.lx-stat-3 { bottom: 20px; left: 20px; }

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

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

/* ---------- Cards ---------- */
.lx-card {
  background: #fff;
  border-radius: var(--lx-radius);
  border: 1px solid var(--lx-border);
  box-shadow: var(--lx-shadow);
  overflow: hidden;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.lx-feature-card {
  text-align: center;
  padding: 36px 28px;
}

.lx-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lx-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(10,102,194,.3);
  transition: transform .35s ease;
}

.lx-card:hover .lx-icon-circle { transform: scale(1.08) rotate(6deg); }

.lx-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.lx-feature-card p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--lx-muted);
}

/* Service cards */
.lx-service-card .svc-img {
  height: 220px;
  overflow: hidden;
}

.lx-service-card .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.lx-service-card:hover .svc-img img { transform: scale(1.08); }

.lx-service-card .svc-body { padding: 24px; }

.lx-service-card .svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 18px;
  font-size: 14px;
  color: var(--lx-muted);
}

.lx-service-card .svc-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lx-blue);
  font-size: 1.2rem;
}

/* Barber cards */
.lx-barber-card { text-align: center; }

.lx-barber-card .barber-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.lx-barber-card .barber-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.lx-barber-card:hover .barber-img img { transform: scale(1.06); }

.lx-barber-card .barber-body { padding: 24px 20px 28px; }

.lx-barber-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.lx-barber-card .role { color: var(--lx-blue); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

.lx-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.lx-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lx-blue-soft);
  color: var(--lx-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.lx-social a:hover {
  background: var(--lx-grad);
  color: #fff;
}

/* Pricing */
.lx-price-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.lx-price-card.featured {
  background: var(--lx-grad);
  color: #fff;
  transform: scale(1.04);
  z-index: 2;
}

.lx-price-card.featured h3,
.lx-price-card.featured .price,
.lx-price-card.featured p,
.lx-price-card.featured li { color: #fff !important; }

.lx-price-card .badge-hot {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: var(--lx-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.lx-price-card .price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--lx-blue);
  margin: 12px 0;
}

.lx-price-card .price small { font-size: 1rem; font-weight: 500; color: var(--lx-muted); }

.lx-price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.lx-price-card ul li {
  padding: 8px 0;
  color: var(--lx-slate);
  border-bottom: 1px solid var(--lx-border);
  font-size: 0.95rem;
}

.lx-price-card ul li i { color: var(--lx-blue); margin-right: 8px; }
.lx-price-card.featured ul li { border-color: rgba(255,255,255,.2); }
.lx-price-card.featured ul li i { color: #93C5FD; }

/* Gallery masonry */
.lx-gallery {
  columns: 3 280px;
  column-gap: 20px;
}

.lx-gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--lx-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--lx-shadow);
}

.lx-gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

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

.lx-gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,.75), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: .35s;
  color: #fff;
}

.lx-gallery-item:hover .g-overlay { opacity: 1; }

/* Testimonials */
.lx-testimonial {
  padding: 36px;
  height: 100%;
}

.lx-testimonial .stars { color: #F59E0B; margin-bottom: 14px; letter-spacing: 2px; }

.lx-testimonial .quote {
  font-size: 1.05rem;
  color: var(--lx-slate);
  margin-bottom: 22px;
  font-style: italic;
}

.lx-testimonial .person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lx-testimonial .person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lx-blue-soft);
}

.lx-testimonial .person strong {
  display: block;
  font-family: var(--font-head);
  color: var(--lx-navy);
}

.lx-testimonial .person span { font-size: 13px; color: var(--lx-muted); }

/* About collage */
.lx-collage {
  position: relative;
  min-height: 480px;
}

.lx-collage .img-main {
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--lx-radius);
  box-shadow: var(--lx-shadow-lg);
}

.lx-collage .img-float {
  position: absolute;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--lx-radius);
  border: 6px solid #fff;
  box-shadow: var(--lx-shadow);
  bottom: 0;
  right: 0;
}

.lx-collage .exp-badge {
  position: absolute;
  top: 30px;
  right: 10%;
  background: var(--lx-grad);
  color: #fff;
  padding: 20px;
  border-radius: var(--lx-radius);
  text-align: center;
  box-shadow: var(--lx-shadow-lg);
  min-width: 110px;
}

.lx-collage .exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1;
}

.lx-checklist { list-style: none; padding: 0; margin: 24px 0; }

.lx-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--lx-slate);
}

.lx-checklist li i {
  color: var(--lx-blue);
  margin-top: 4px;
}

/* Counter strip */
.lx-counters {
  background: var(--lx-grad);
  border-radius: var(--lx-radius);
  padding: 48px 24px;
  color: #fff;
  box-shadow: var(--lx-shadow-lg);
}

.lx-counters .counter-item { text-align: center; padding: 12px; }

.lx-counters .counter-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.lx-counters .counter-item span {
  font-size: 14px;
  opacity: .85;
}

/* CTA band */
.lx-cta {
  position: relative;
  border-radius: var(--lx-radius);
  overflow: hidden;
  padding: 70px 40px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.lx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.92), rgba(10,102,194,.88));
}

.lx-cta .cta-inner { position: relative; z-index: 2; }
.lx-cta h2 { color: #fff; margin-bottom: 12px; }
.lx-cta p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 28px; }

/* Contact */
.lx-info-card {
  padding: 28px;
  height: 100%;
}

.lx-info-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lx-blue-soft);
  color: var(--lx-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.lx-form .form-control,
.lx-form .form-select {
  border-radius: 14px;
  border: 1.5px solid var(--lx-border);
  padding: 14px 16px;
  font-size: 15px;
  background: #fff;
  transition: .25s;
  color: var(--lx-navy);
}

.lx-form .form-control:focus,
.lx-form .form-select:focus {
  border-color: var(--lx-blue);
  box-shadow: 0 0 0 4px rgba(10,102,194,.12);
}

.lx-form label {
  font-weight: 600;
  font-size: 13px;
  color: var(--lx-navy);
  margin-bottom: 6px;
}

.lx-map {
  border-radius: var(--lx-radius);
  overflow: hidden;
  box-shadow: var(--lx-shadow);
  height: 360px;
}

.lx-map iframe { width: 100%; height: 100%; border: 0; }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .3s;
}

.whatsapp-float:hover { transform: scale(1.08); color: #fff !important; }

/* Footer */
.lx-footer {
  background: var(--lx-navy);
  color: rgba(255,255,255,.75);
  padding-top: 80px;
  margin-top: 0;
}

.lx-footer h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lx-footer p { color: rgba(255,255,255,.65); }

.lx-footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.lx-footer a:hover { color: #93C5FD; }

/* Footer social icons — high contrast on dark bg */
.lx-footer .lx-social a,
.lx-footer .lx-footer-social a {
  background: #0A66C2 !important;
  color: #ffffff !important;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.lx-footer .lx-social a i,
.lx-footer .lx-footer-social a i {
  color: #ffffff !important;
  opacity: 1 !important;
}

.lx-footer .lx-social a:hover,
.lx-footer .lx-footer-social a:hover {
  background: #ffffff !important;
  color: #0A66C2 !important;
  transform: translateY(-3px);
}

.lx-footer .lx-social a:hover i,
.lx-footer .lx-footer-social a:hover i {
  color: #0A66C2 !important;
}

.lx-footer ul { list-style: none; padding: 0; margin: 0; }
.lx-footer ul li { margin-bottom: 10px; }

.lx-footer .logo-foot img {
  height: 52px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}

.lx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 14px;
}

.lx-newsletter .form-control {
  border-radius: 50px;
  border: none;
  padding: 12px 18px;
}

.lx-newsletter .btn {
  border-radius: 50px;
  background: var(--lx-grad);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
}

.to-top-lx {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lx-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10,102,194,.35);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  cursor: pointer;
  border: none;
}

.to-top-lx.show { opacity: 1; pointer-events: auto; }
.to-top-lx:hover { transform: translateY(-3px); color: #fff; }

/* Services page dynamic blocks */
.lx-svc-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 56px;
  background: #fff;
  border-radius: var(--lx-radius);
  overflow: hidden;
  box-shadow: var(--lx-shadow);
}

.lx-svc-block.reverse { direction: rtl; }
.lx-svc-block.reverse > * { direction: ltr; }

.lx-svc-block .svc-media {
  min-height: 360px;
}

.lx-svc-block .svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lx-svc-block .svc-panel { padding: 36px 32px; }

.lx-svc-block .svc-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lx-svc-block .svc-panel h3 i { color: var(--lx-blue); }

.lx-svc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--lx-bg);
  margin-bottom: 10px;
  transition: .25s;
}

.lx-svc-item:hover {
  background: var(--lx-blue-soft);
  transform: translateX(4px);
}

.lx-svc-item strong {
  display: block;
  color: var(--lx-navy);
  font-family: var(--font-head);
  font-weight: 600;
}

.lx-svc-item .meta { font-size: 13px; color: var(--lx-muted); }
.lx-svc-item .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lx-blue);
  font-size: 1.1rem;
  margin-right: 12px;
}

.lx-svc-item .book-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--lx-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s;
}

.lx-svc-item .book-mini:hover { transform: scale(1.08); }

.service-items-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Hide old preloader if any */
.peloaders { display: none !important; }

/* Lightbox modal */
.lx-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lx-lightbox.show { display: flex; }
.lx-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lx-lightbox .close-lb {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }
  .lx-hero { min-height: auto; padding: 130px 0 60px; text-align: center; }
  .lx-hero .lead { margin-left: auto; margin-right: auto; }
  .lx-hero-actions { justify-content: center; }
  .lx-hero-visual { margin-top: 40px; }
  .lx-hero-visual .main-img { height: 400px; }
  .lx-stat-1, .lx-stat-2, .lx-stat-3 { position: relative; top: auto; left: auto; right: auto; bottom: auto; display: inline-block; margin: 8px; }
  .lx-hero-visual .stat-wrap { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
  .lx-collage { min-height: auto; margin-bottom: 40px; }
  .lx-collage .img-main { width: 100%; height: 320px; }
  .lx-collage .img-float { width: 45%; height: 150px; }
  .lx-price-card.featured { transform: none; }
  .lx-svc-block,
  .lx-svc-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .lx-svc-block .svc-media { min-height: 260px; }
}

@media (max-width: 575.98px) {
  .lx-hero h1 { font-size: 2.1rem; }
  .btn-lx { width: 100%; }
  .lx-gallery { columns: 1; }
  .lx-stat-card { min-width: 140px; }
}

/* Testimonial carousel controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--lx-grad);
  border-radius: 50%;
  opacity: 1;
}
#testimonialCarousel .carousel-control-prev { left: 0; }
#testimonialCarousel .carousel-control-next { right: 0; }
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}
