/* ==========================================================================
   BRIGHT SIGNAGE HUB KENYA — Stylesheet
   Layout notes for the Elementor rebuild:
   - Every section below is built from flex containers + basic block elements.
   - No CSS grid and no JS-driven layout are used anywhere in this file.
   - Section blocks map 1:1 to native Elementor widgets/containers:
     .site-header      -> Flex Container (header)
     .hero             -> Flex Container + Heading + Text Editor + Buttons
     .icon-box         -> Icon Box widget
     .card / .gallery  -> Image widget inside Flex Container (Gallery widget)
     .testimonial-*    -> Testimonial widget
     .stars            -> Star Rating widget
     details/summary   -> Accordion widget
     .btn               -> Button widget
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #072A48;
  --navy-700: #0B3A63;
  --navy-600: #0F4A80;
  --orange: #F0522F;
  --orange-600: #D8431F;
  --orange-100: #FDE7E1;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --ink: #16232F;
  --gray: #5B6B7C;
  --gray-light: #8C9AA8;
  --border: #E4E8EC;
  --shadow-sm: 0 2px 8px rgba(7, 42, 72, 0.08);
  --shadow-md: 0 12px 32px rgba(7, 42, 72, 0.14);
  --shadow-lg: 0 24px 60px rgba(7, 42, 72, 0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --container: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--gray); }
p:last-child { margin-bottom: 0; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 768px) {
  section { padding: 56px 0; }
}

/* ---------- Flex helpers (used instead of grid everywhere) ---------- */
.flex { display: flex; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 16px; }
.gap-md { gap: 28px; }
.gap-lg { gap: 48px; }
.text-center { text-align: center; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-100);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(240, 82, 47, 0.35); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px rgba(240, 82, 47, 0.4); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(7, 42, 72, 0.3); }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.12rem; color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }
.brand-text span { font-size: 0.72rem; color: var(--orange); font-weight: 700; letter-spacing: 0.16em; }

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--orange);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.header-call svg { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 900px) {
  .header-call span.call-label { display: none; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    height: calc(100vh - 73px);
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 40px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .main-nav a { display: block; padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .main-nav .nav-cta { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary.header-quote-btn { display: none; }
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 0;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-fade 42s infinite;
}
.hero-bg-slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slide:nth-child(2) { animation-delay: 6s; }
.hero-bg-slide:nth-child(3) { animation-delay: 12s; }
.hero-bg-slide:nth-child(4) { animation-delay: 18s; }
.hero-bg-slide:nth-child(5) { animation-delay: 24s; }
.hero-bg-slide:nth-child(6) { animation-delay: 30s; }
.hero-bg-slide:nth-child(7) { animation-delay: 36s; }
@keyframes hero-fade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation: none; opacity: 0; }
  .hero-bg-slide:first-child { opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,26,45,0.68) 8%, rgba(7,42,72,0.5) 45%, rgba(7,42,72,0.22) 100%);
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero .lead { color: rgba(255,255,255,0.86); font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust .stat strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.4rem; font-weight: 800; }
.hero-trust .stat span { color: rgba(255,255,255,0.72); font-size: 0.85rem; }

.page-header {
  position: relative;
  background: var(--navy);
  padding: 150px 0 76px;
  text-align: center;
  overflow: hidden;
}
.page-header .hero-bg { opacity: 0.28; }
.page-header .hero-overlay { background: linear-gradient(180deg, rgba(7,26,45,0.75), rgba(7,42,72,0.94)); }
.page-header-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.82); font-size: 1.08rem; }
.breadcrumb { position: relative; display: flex; justify-content: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--orange); }

/* ---------- Icon boxes ---------- */
.icon-box-row { display: flex; flex-wrap: wrap; gap: 28px; }
.icon-box-row.three-col .icon-box { flex: 1 1 300px; max-width: 362px; }
.icon-box {
  flex: 1 1 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.icon-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-box .icon-circle {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-100);
  color: var(--orange);
  margin-bottom: 20px;
}
.icon-box.navy-icon .icon-circle { background: rgba(7,42,72,0.08); color: var(--navy); }
.icon-box h3 { margin-bottom: 10px; }
.icon-box p { font-size: 0.96rem; margin-bottom: 0; }

/* compact variant used for process steps / contact cards */
.icon-box.center { text-align: center; }
.icon-box.center .icon-circle { margin-left: auto; margin-right: auto; }

/* ---------- Process steps ---------- */
.process-row { display: flex; flex-wrap: wrap; gap: 24px; counter-reset: step; }
.process-step {
  flex: 1 1 240px;
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border);
}
.process-step .step-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.94rem; }

/* ---------- Cards / gallery (flex-based, no grid) ---------- */
.card-row { display: flex; flex-wrap: wrap; gap: 28px; }
.card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .card-img { height: 230px; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card .card-body { padding: 22px 24px 26px; }
.card .tag { display: inline-block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: 0.93rem; }

.gallery-row { display: flex; flex-wrap: wrap; gap: 22px; }
.gallery-item {
  flex: 1 1 340px;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.gallery-item .g-img { height: 260px; overflow: hidden; }
.gallery-item .g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover .g-img img { transform: scale(1.08); }
.gallery-caption { padding: 18px 20px 22px; background: var(--white); }
.gallery-caption .tag { display: block; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.gallery-caption h3 { font-size: 1.02rem; margin-bottom: 4px; }
.gallery-caption p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Trusted-by strip ---------- */
.trusted {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}
.trusted p.label { text-align: center; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; color: var(--gray); margin-bottom: 26px; }
.logo-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-card {
  flex: 0 0 auto;
  width: 148px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.logo-card img {
  max-width: 76%;
  max-height: 58%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .logo-card { width: 112px; height: 66px; }
  .logo-track { gap: 16px; }
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Mission / Vision ---------- */
.mv-row { display: flex; flex-wrap: wrap; gap: 28px; }
.mv-card {
  flex: 1 1 320px;
  padding: 40px 36px;
  border-radius: var(--radius);
  color: var(--white);
}
.mv-card.mission { background: linear-gradient(145deg, var(--navy), var(--navy-600)); }
.mv-card.vision { background: linear-gradient(145deg, var(--orange-600), var(--orange)); }
.mv-card .icon-circle { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mv-card h3 { color: var(--white); font-size: 1.3rem; }
.mv-card p { color: rgba(255,255,255,0.92); font-size: 1.03rem; margin-bottom: 0; }

/* ---------- Values ---------- */
.value-row { display: flex; flex-wrap: wrap; gap: 24px; }
.value-item { flex: 1 1 210px; text-align: center; padding: 10px; }
.value-item .icon-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-item p { font-size: 0.9rem; }

/* ---------- Corporate Social Responsibility carousel ---------- */
.csr-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.csr-slides { position: relative; width: 100%; height: 100%; }
.csr-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}
.csr-slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s ease; z-index: 2; }
.csr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: none;
}
.csr-slide.is-active img { transform: scale(1.1); transition: transform 6.5s ease-out; }
.csr-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 32px 28px;
  background: linear-gradient(0deg, rgba(7,42,72,0.92) 0%, rgba(7,42,72,0.55) 55%, rgba(7,42,72,0) 100%);
}
.csr-slide-caption h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.csr-slide-caption p { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 0; max-width: 520px; }
.csr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.csr-arrow:hover { background: var(--orange); color: var(--white); }
.csr-arrow-prev { left: 18px; }
.csr-arrow-next { right: 18px; }
.csr-dots {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.csr-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background .18s ease, transform .18s ease;
}
.csr-dot.is-active { background: var(--orange); transform: scale(1.25); }
@media (max-width: 768px) {
  .csr-carousel { height: 380px; }
  .csr-slide-caption { padding: 44px 20px 22px; }
  .csr-arrow { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .csr-carousel { height: 320px; }
}

/* ---------- Reviews band ---------- */
/* ---------- Reviews (Google-style) ---------- */
.reviews-section { position: relative; overflow: hidden; }
.reviews-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow-light { color: var(--white); background: rgba(255,255,255,0.12); }
.reviews-head h2 { color: var(--white); margin-bottom: 20px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1A73E8;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 100px;
  position: relative;
  box-shadow: 0 10px 24px rgba(26,115,232,0.35);
}
.google-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.google-badge-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.google-badge-dot.dot-1 { top: -6px; right: 18px; }
.google-badge-dot.dot-2 { bottom: -5px; left: 26px; width: 7px; height: 7px; background: #FFC107; }

.reviews-flex { display: flex; flex-wrap: wrap; gap: 40px; align-items: stretch; }
.reviews-summary {
  flex: 1 1 240px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-right: 12px;
}
.reviews-stars { display: flex; gap: 6px; color: #FFC107; margin-bottom: 14px; }
.reviews-stars svg { width: 24px; height: 24px; }
.reviews-summary-label { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 6px; }
.reviews-summary .reviews-count { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 18px; }
.reviews-summary .reviews-count strong { color: var(--white); font-family: var(--font-head); font-size: 1.15rem; }
.reviews-google-mark { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.reviews-google-mark svg { width: 22px; height: 22px; }
.reviews-google-mark span { color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 1rem; }

.reviews-carousel-wrap { flex: 2 1 560px; display: flex; flex-direction: column; min-width: 0; }
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-card-more {
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.28);
  transition: background 0.2s, border-color 0.2s;
}
.review-card-more:hover { background: rgba(255,255,255,0.08); border-color: var(--orange); }
.review-more-count { color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.review-more-label { color: rgba(255,255,255,0.68); font-size: 0.92rem; margin: 8px 0 18px; }
.review-more-cta { color: var(--orange); font-weight: 600; font-size: 0.95rem; }
.reviews-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 4px; }
.reviews-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.reviews-nav-btn svg { width: 18px; height: 18px; }
.reviews-nav-btn:hover { background: var(--orange); border-color: var(--orange); }
@media (max-width: 640px) { .reviews-nav { justify-content: center; } }
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.review-card-id { display: flex; flex-direction: column; gap: 3px; }
.review-name { color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.review-meta { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.review-stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.review-stars { display: flex; gap: 4px; color: #FFC107; }
.review-stars svg { width: 17px; height: 17px; }
.review-time { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.review-quote { color: rgba(255,255,255,0.85); font-size: 0.96rem; line-height: 1.6; flex-grow: 1; }
.review-source { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.review-source svg { width: 14px; height: 14px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.5rem,2.6vw,2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.cta-banner .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-wrap { padding: 0 24px; max-width: var(--container); margin: 0 auto; }
section.cta-section { padding: 0 0 88px; }
section.cta-section.top { padding: 88px 0 0; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 4px; color: var(--orange); }
.stars svg { width: 18px; height: 18px; }

/* ---------- FAQ Accordion (native details/summary) ---------- */
.accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
}
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange-100); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; transition: transform .2s ease; }
.accordion details[open] summary .plus { transform: rotate(45deg); }
.accordion .accordion-body { padding: 0 0 20px; font-size: 0.96rem; color: var(--gray); }

/* ---------- Form ---------- */
.form-row { display: flex; flex-wrap: wrap; gap: 18px; }
.form-group { flex: 1 1 240px; display: flex; flex-direction: column; gap: 8px; }
.form-group.full { flex-basis: 100%; }
label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--navy); }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--ink);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--orange-100);
}
textarea { resize: vertical; min-height: 130px; }

.form-result-message {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: var(--orange-100);
  border: 1px solid rgba(240, 82, 47, 0.25);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}
.form-result-message.form-result-error {
  margin-top: 16px;
  background: #FDECEC;
  border-color: rgba(200, 40, 40, 0.25);
  color: #B42318;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---------- Contact cards ---------- */
.contact-info-row { display: flex; flex-wrap: wrap; gap: 24px; }

/* ---------- Sections with alt background ---------- */
.bg-off { background: var(--off-white); }
.bg-warm { background: linear-gradient(135deg, #FFF3EC 0%, #FDF7EC 45%, #F1FBFA 100%); }

/* Colorful icon variant: cycles a small bright accent palette across cards
   so a repeated icon-box grid reads as lively rather than monochrome. */
.icon-box-row.colorful .icon-box:nth-child(6n+1) .icon-circle { background: var(--orange-100); color: var(--orange); }
.icon-box-row.colorful .icon-box:nth-child(6n+2) .icon-circle { background: rgba(7,42,72,0.09); color: var(--navy); }
.icon-box-row.colorful .icon-box:nth-child(6n+3) .icon-circle { background: rgba(13,148,136,0.13); color: #0D9488; }
.icon-box-row.colorful .icon-box:nth-child(6n+4) .icon-circle { background: rgba(202,138,4,0.14); color: #B45309; }
.icon-box-row.colorful .icon-box:nth-child(6n+5) .icon-circle { background: rgba(124,58,237,0.11); color: #7C3AED; }
.icon-box-row.colorful .icon-box:nth-child(6n+6) .icon-circle { background: rgba(219,39,119,0.11); color: #DB2777; }
.icon-box-row.colorful .icon-box { background: rgba(255,255,255,0.72); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.78); }

/* ---------- Two column layout (flex) ---------- */
.split-row { display: flex; flex-wrap: wrap; align-items: center; gap: 56px; }
.split-row > .col { flex: 1 1 420px; }
.split-row .col img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: auto; object-fit: cover; }
.split-row.reverse { flex-direction: row-reverse; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 72px 0 0; }
.footer-row { display: flex; flex-wrap: wrap; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-col { flex: 1 1 220px; }
.footer-col.brand-col { flex: 1 1 300px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 42px; }
.footer-brand strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; }
.footer-brand span { display: block; color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; }
.footer-col h4 { color: var(--white); font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.94rem; }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.94rem; }
.footer-contact-item svg { flex: none; margin-top: 3px; color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 26px 0; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  transition: background .18s ease, transform .18s ease;
}
.social-row a:hover { background: var(--orange); transform: translateY(-3px); border-color: var(--orange); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Floating action buttons ---------- */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 600; display: flex; flex-direction: column; gap: 14px; }
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .18s ease;
}
.fab:hover { transform: scale(1.08); }
.fab.fab-whatsapp { background: #25D366; color: var(--white); }
.fab.fab-call { background: var(--orange); color: var(--white); }
.fab.fab-instagram { background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); color: var(--white); }
.fab.fab-tiktok { background: #010101; color: var(--white); }
.fab.fab-whatsapp svg, .fab.fab-call svg, .fab.fab-instagram svg, .fab.fab-tiktok svg { width: 27px; height: 27px; }

.floating-actions-left { position: fixed; left: 22px; bottom: 22px; z-index: 600; display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 560px) {
  .floating-actions { right: 16px; bottom: 16px; }
  .floating-actions-left { left: 16px; bottom: 16px; }
  .fab { width: 52px; height: 52px; }
}

/* ---------- Footer credit ---------- */
.footer-credit a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-credit a:hover { color: var(--orange); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-list li {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}


/* Card photo thumbnails for service, why-choose-us, and process cards */
.icon-box .card-photo,
.process-step .card-photo {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin: 4px 0 18px;
}
