/* =========================================================
   Bert's Property Services — shared design tokens & base
   ========================================================= */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #F5F4F1;
  --panel:     #FFFFFF;
  --ink:       #17140F;
  --ink-soft:  #57534A;

  /* "Black" — used for the header/footer, dark hero panel and dark
     card blocks. Softened warm charcoal rather than near-black, so
     large dark sections feel less harsh/heavy. */
  --green:     #E2231A;   /* legacy var name, now maps to brand red, see --red */
  --green-dark:#2B2621;   /* legacy var name, now maps to charcoal, see --black */
  --green-mid: #3A342D;

  --black:     #2B2621;
  --black-soft:#3A342D;
  --red:       #E2231A;
  --red-dark:  #B81812;

  --accent:    #E2231A;
  --accent-dark:#B81812;
  --tan:       #E2231A;
  --line:      #E7E4DC;

  --font-display: 'Poppins', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(20,15,10,0.06);
  --shadow-md: 0 10px 30px -12px rgba(15, 12, 8, 0.35);
  --shadow-lg: 0 24px 60px -20px rgba(15, 12, 8, 0.45);
}

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

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.4rem); text-transform: uppercase; }
h2 { font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
h3 { font-weight: 800; font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(40px, 6vw, 76px) 0;
}
.section--tight { padding: clamp(28px, 4vw, 52px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--black);
  color: #E5E2DA;
}
.section--dark h2, .section--dark h3, .section--dark h1 { color: #FFFFFF; }
.section--dark p { color: #B8B4AA; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }

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

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: #fff; color: var(--green-dark); border-color: #fff; }

.btn--light { background: #fff; color: var(--green-dark); }
.btn--light:hover { background: var(--bg-alt); box-shadow: var(--shadow-md); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  /* Note: intentionally no backdrop-filter here — it creates a new
     containing block for position:fixed descendants (the mobile
     .nav-links panel), which breaks its full-screen positioning. */
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-dark);
  flex-shrink: 0;
}
.brand span small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 34px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1.2rem; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  height: 680px;
  background: var(--green-dark);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 72px);
  color: #fff;
}
.hero-copy h1 { color: #fff; }
.hero-copy p.lead {
  font-size: 1.15rem;
  color: #D7DACB;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-figure {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,26,22,0.72) 0%, rgba(30,26,22,0.05) 40%);
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-figure { min-height: 280px; order: -1; }
  .hero-figure::after { background: linear-gradient(180deg, rgba(30,26,22,0.1) 40%, rgba(30,26,22,0.88) 100%); }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 18px;
  border-radius: 999px;
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E5E2DA;
  margin-bottom: 24px;
}
.hero-badge b { color: #fff; font-family: var(--font-display); font-size: 1rem; }

/* ============ Feature strip (overlaps hero bottom edge) ============ */
.feature-strip-wrap { position: relative; z-index: 5; }
.feature-strip {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: -56px;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 28px;
}
@media (max-width: 880px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); margin-top: -40px; padding: 22px 18px; gap: 22px 16px; }
}
.feature-strip-item { display: flex; align-items: center; gap: 14px; text-align: left; }
.fs-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.feature-strip-item strong { display: block; font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.feature-strip-item small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* Page header (non-home) */
.page-hero {
  position: relative;
  background: var(--green-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
}
/* Dark scrim over the photo so heading/lead text stays readable
   regardless of what's underneath it. */
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(24,20,16,0.92) 0%, rgba(24,20,16,0.72) 55%, rgba(24,20,16,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.page-hero p.lead { color: #F1EFE9; max-width: 60ch; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  color: #B8B4AA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--accent); }

/* ============ Cards / Grids ============ */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 24px 24px 26px; background: var(--panel); }
.card-body h3 { margin-bottom: 8px; color: var(--ink); }
.card-body p { margin-bottom: 14px; font-size: 0.96rem; color: var(--ink-soft); }
.card-link {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-link i { font-size: 0.8em; transition: transform 0.15s ease; }
.card-link:hover { color: var(--red-dark); }
.card-link:hover i { transform: translateX(3px); }

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
}
.stat span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* Testimonial */
.testimonial {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.testimonial q {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-style: normal;
  color: var(--green-dark);
  display: block;
  margin-bottom: 20px;
  quotes: none;
  line-height: 1.35;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Two-col feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* Service block (services page) */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) .service-media { order: 2; }
@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-media { order: 0; }
}
.service-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.service-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.service-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--line);
  display: block;
  margin-bottom: 6px;
}

/* Gallery */
.gallery-grid {
  columns: 3 260px;
  column-gap: 20px;
}
.gallery-grid figure {
  margin: 0 0 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--panel);
  border: 1px solid var(--line);
}
.gallery-grid img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  padding: 14px 16px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-dark);
}
.gallery-grid figcaption span {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin-top: 2px;
}
.tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* Filter buttons */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--panel);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.contact-card:has(a.value):hover,
.contact-card.is-clickable:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-card .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.contact-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-card p { margin-bottom: 0; font-size: 0.92rem; }
.contact-card a.value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--accent);
  padding: 9px 16px;
  border-radius: 999px;
  margin-top: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contact-card a.value:hover { background: var(--accent-dark); transform: translateY(-1px); }
.contact-card a.value i { font-size: 0.85em; }

/* Contact methods (WhatsApp / Call / Email cards) */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .contact-methods { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.contact-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.contact-method h3 { margin-bottom: 8px; }
.contact-method p { font-size: 0.92rem; margin-bottom: 20px; flex-grow: 1; }
.contact-method-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--accent);
}
.contact-method-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

/* Map placeholder */
.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}
.area-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.05); }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #C9CDBF;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #93987F;
}
.footer-bottom a:hover { color: #fff; }
.pm-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #93987F;
}
.pm-credit:hover { color: #fff; }
.pm-credit img {
  height: 26px;
  width: auto;
  opacity: 0.9;
}
.pm-credit:hover img { opacity: 1; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ============ Floating WhatsApp button ============ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px -8px rgba(0,0,0,0.5); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; display: none; }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
}

/* ============ Testimonial slider ============ */
.testi-slider { position: relative; }
.testi-viewport { overflow: hidden; width: 100%; }
.testi-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.45s ease;
}
.testi-card {
  flex: 0 0 33.3333%;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .testi-card { flex: 0 0 50%; }
}
@media (max-width: 640px) {
  .testi-card { flex: 0 0 100%; }
}
.testi-card-inner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-recommend {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.testi-card-inner q {
  quotes: none;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.testi-name { font-weight: 800; font-size: 0.9rem; color: var(--green-dark); }
.testi-name span { display: block; font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.testi-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--panel);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.15s ease;
}
.testi-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.testi-btn:disabled { opacity: 0.35; cursor: default; }
.testi-btn:disabled:hover { background: var(--panel); border-color: var(--line); color: var(--green-dark); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.testi-dot.is-active { background: var(--accent); transform: scale(1.2); }

/* Reveal-on-scroll (progressive enhancement — content stays visible if JS is off) */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
