/* ==========================================================================
   Nolan Property Services — stylesheet
   Brand colours sourced from the company's Facebook logo (black + lime green)
   ========================================================================== */

:root {
  --color-dark: #121212;
  --color-dark-deep: #000000;
  --color-dark-light: #2b2b2b;
  --color-lime: #9bdc3c;
  --color-lime-dark: #7ebb27;
  --color-lime-text: #4c7a1b;
  --color-bg: #f7f8fa;
  --color-white: #ffffff;
  --color-text: #16202a;
  --color-text-muted: #5b6673;
  --color-border: #e3e6ea;
  --color-success: #2e9e5b;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container-width: 1160px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.18);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }

a { color: var(--color-lime-text); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

ul { padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--color-bg);
}

.section-navy {
  background: var(--color-dark);
  color: var(--color-white);
}
.section-navy h2, .section-navy h3 { color: var(--color-white); }
.section-navy p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-lime-text);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.2s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px) scale(1.03); }
.btn:active { transform: scale(0.96); transition-duration: 0.1s; }

.btn-primary {
  background: var(--color-lime);
  color: var(--color-dark);
  box-shadow: 0 6px 16px rgba(155, 220, 60, 0.4);
}
.btn-primary:hover { background: var(--color-lime-dark); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }

.btn-outline {
  background: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.btn-outline:hover { background: var(--color-dark); color: var(--color-white); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-dark-deep);
  border-bottom: 1px solid rgba(155, 220, 60, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--color-lime);
  transition: left 0.25s var(--ease-bounce), right 0.25s var(--ease-bounce);
}
.main-nav a:hover { color: var(--color-lime); text-decoration: none; }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.main-nav a.active { color: var(--color-lime); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.98rem;
}
.header-phone svg { flex-shrink: 0; }
.header-phone:hover { color: var(--color-lime); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--color-white); }

/* ---------- Hero ---------- */
.hero {
  background: var(--color-dark-deep);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.9) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  z-index: 1;
  background: radial-gradient(circle, rgba(155,220,60,0.28) 0%, rgba(155,220,60,0) 70%);
}
.hero > .container {
  position: relative;
  z-index: 3;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 76px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-glow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  background: radial-gradient(circle, rgba(155,220,60,0.18) 0%, rgba(155,220,60,0) 70%);
  pointer-events: none;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.hero h1 { color: var(--color-white); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.hero-badge svg { color: var(--color-lime); flex-shrink: 0; }

.hero-panel {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.hero-panel h3 { margin-bottom: 6px; }
.hero-panel p { font-size: 0.92rem; margin-bottom: 18px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}
.trust-item svg { color: var(--color-lime-text); flex-shrink: 0; }

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.25s ease, transform 0.3s var(--ease-bounce);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px) rotate(-0.6deg); }
.card:nth-child(even):hover { transform: translateY(-5px) rotate(0.6deg); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: rgba(155, 220, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: border-radius 0.4s ease, transform 0.3s var(--ease-bounce);
}
.card-icon svg { width: 26px; height: 26px; color: var(--color-lime-text); }
.card:hover .card-icon,
.service-row:hover .card-icon,
.contact-info-item:hover .card-icon {
  border-radius: 46% 54% 37% 63% / 48% 55% 45% 52%;
  transform: scale(1.08);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 6px;
}
.card-link .arrow { display: inline-block; transition: transform 0.25s var(--ease-bounce); }
.card-link:hover .arrow { transform: translateX(5px); }

/* ---------- Service list rows (services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}
.service-row:last-child { border-bottom: none; }
.service-row .card-icon { margin-bottom: 0; }
.service-row h3 { margin-bottom: 6px; }
.service-row .btn { align-self: center; }

/* ---------- Placeholder photo tiles (gallery) ---------- */
.photo-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-tile:hover img { transform: scale(1.07); }
.photo-tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

.notice-box {
  display: flex;
  gap: 16px;
  background: #f5fce8;
  border: 1px solid #dcf0a8;
  border-radius: var(--radius);
  padding: 20px 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.notice-box svg { color: var(--color-lime-text); flex-shrink: 0; margin-top: 2px; }
.notice-box p { margin: 0; color: var(--color-text); font-size: 0.92rem; }

/* ---------- Testimonial / trust panel ---------- */
.review-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.review-score {
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid var(--color-border);
}
.review-score .big { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--color-dark); }
.review-stars { color: var(--color-lime-text); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-lime);
  color: var(--color-dark);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-dark); margin-bottom: 6px; }
.cta-banner p { color: rgba(18,18,18,0.75); margin: 0; }
.cta-banner .btn-primary { background: var(--color-dark); color: var(--color-white); box-shadow: none; }
.cta-banner .btn-primary:hover { background: var(--color-dark-deep); }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
}
.form-field input[type="file"] {
  padding: 10px 14px;
  cursor: pointer;
}
.form-field input[type="file"]::file-selector-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: var(--color-lime);
  color: var(--color-dark);
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-field input[type="file"]::file-selector-button:hover { background: var(--color-lime-dark); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-lime-text);
  box-shadow: 0 0 0 3px rgba(155, 220, 60, 0.25);
}
.form-note { font-size: 0.8rem; color: var(--color-text-muted); }

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-top: 16px;
}
.form-status.show { display: block; }
.form-status.success { background: #e9f7ef; color: var(--color-success); border: 1px solid #bfe8cf; }
.form-status.error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }

/* ---------- Contact info cards ---------- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item .card-icon { margin-bottom: 0; }
.contact-info-item h3 { margin-bottom: 2px; font-size: 1.05rem; }
.contact-info-item p { margin: 0; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 24px;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo:hover { text-decoration: none; }
.footer-logo-mark {
  height: 130px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease-bounce);
}
.footer-logo:hover .footer-logo-mark { transform: rotate(-4deg) scale(1.04); }
.site-footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.site-footer a:hover { color: var(--color-lime); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:hover { background: var(--color-lime-dark); }
.social-icons svg { width: 18px; height: 18px; color: var(--color-white); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-call-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.88rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 158, 91, 0.1);
  color: var(--color-success);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-deep);
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(155, 220, 60, 0.2);
    box-shadow: var(--shadow-md);
    gap: 16px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
  .nav-toggle { display: block; transition: transform 0.3s var(--ease-bounce); }
  .site-header.nav-open .nav-toggle { transform: rotate(90deg); }
  .header-phone span.phone-label { display: none; }
  .header-cta .btn-primary { display: none; }

  .site-header.nav-open .main-nav {
    max-height: 400px;
    opacity: 1;
    padding: 20px;
  }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-row { grid-template-columns: 52px 1fr; }
  .service-row .btn { grid-column: 1 / -1; margin-top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .review-panel { flex-direction: column; align-items: flex-start; }
  .review-score { border-right: none; padding-right: 0; }

  body { padding-bottom: 70px; }
  .mobile-call-bar { display: flex; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .hero-inner { padding-top: 36px; padding-bottom: 40px; }
}

/* ---------- Marker highlight (headline underline) ---------- */
.marker-highlight {
  padding-bottom: 14px;
  background-image: linear-gradient(var(--color-lime), var(--color-lime));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 4px;
  transition: background-size 0.6s ease-out 0.2s;
}
.marker-highlight.in-view { background-size: 100% 4px; }

/* ---------- Scroll reveal ---------- */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-bounce);
}
.js-reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Custom scrollbar ---------- */
html { scrollbar-color: var(--color-lime-dark) var(--color-bg); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-lime-dark); border-radius: 8px; border: 3px solid var(--color-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--color-lime-text); }

/* ---------- Marquee ticker (desktop only) ---------- */
.marquee {
  display: none;
  background: var(--color-dark-deep);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(155,220,60,0.25);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 52s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-lime);
  white-space: nowrap;
}
.marquee-item svg { width: 14px; height: 14px; flex-shrink: 0; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 781px) {
  .marquee { display: block; }
}

/* ---------- Google reviews carousel ---------- */
.reviews-live {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.reviews-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.reviews-rating-summary { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reviews-rating-summary .score { font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; color: var(--color-dark); }
.reviews-rating-summary .stars { color: var(--color-lime-text); font-size: 1.15rem; letter-spacing: 2px; }
.reviews-rating-summary .count { font-size: 0.85rem; color: var(--color-text-muted); }
.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.review-slide-track { position: relative; min-height: 150px; }
.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.review-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.review-slide blockquote { margin: 0 0 16px; font-size: 1.05rem; font-style: italic; color: var(--color-text); }
.review-slide .reviewer { display: flex; align-items: center; gap: 10px; }
.review-slide .reviewer img { width: 36px; height: 36px; border-radius: 50%; }
.review-slide .reviewer-name { font-weight: 600; color: var(--color-dark); }
.review-slide .review-stars { color: var(--color-lime-text); font-size: 0.85rem; letter-spacing: 1px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce);
}
.carousel-dot.active { background: var(--color-lime-text); transform: scale(1.4); }
.carousel-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce);
}
.carousel-arrow:hover { background: var(--color-bg); transform: scale(1.1); }
.carousel-arrow svg { width: 16px; height: 16px; color: var(--color-dark); }

@media (max-width: 560px) {
  .reviews-live { padding: 26px 22px; }
  .review-slide-track { min-height: 190px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js-reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-glow { display: none; }
}
