/* ==========================================================================
   LP electrical installation - site styles
   Theme: industrial blue + slate dark with amber accent
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-secondary: #0f172a;
  --color-accent: #facc15;
  --color-dark: #020617;
  --color-light: #f1f5f9;
  --color-text: #1e293b;
  --color-text-light: #475569;
  --color-text-on-dark: #cbd5e1;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #cbd5e1;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 8px;
  --transition: 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 4px 12px rgba(2, 6, 23, 0.08);
  --shadow-lg: 0 12px 32px rgba(2, 6, 23, 0.14);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 3px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-padding); }
.section-alt { background: var(--color-bg-alt); }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-secondary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn-outline:hover { background: var(--color-secondary); color: #fff; }

/* === EYEBROW === */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

/* === SECTION HEADERS === */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--color-text-light); font-size: 1.05rem; }

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-inner .logo { display: flex; align-items: center; }
.nav-inner .logo img { height: 40px; width: auto; display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--color-primary); }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 4px;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--color-border);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 280px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown li { margin: 0; padding: 0; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav-cta {
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--color-primary); color: #fff; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .has-dropdown > a::after { margin-left: auto; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 8px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown a { padding: 8px 0; font-size: 0.9rem; border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  color: var(--color-light);
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,0.82), rgba(15,23,42,0.66));
  z-index: 1;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--color-light); max-width: 880px; margin-bottom: 20px; }
.hero .lede { font-size: 1.2rem; max-width: 720px; color: var(--color-text-on-dark); margin-bottom: 32px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* === SERVICES (services-01) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--color-text-light); font-size: 0.95rem; flex: 1; margin-bottom: 16px; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--color-primary);
  font-size: 0.92rem; font-family: var(--font-heading);
}
.service-card .read-more::after { content: "→"; transition: transform var(--transition); }
.service-card:hover .read-more::after { transform: translateX(4px); }

/* === ABOUT (about-03) === */
.about-03 .split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-03 .split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-md); }
.about-03 .split-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 22px;
}
.about-03 .split-text p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-03 .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (min-width: 800px) {
  .about-03 .split > .split-text { order: 1; }
  .about-03 .split > img { order: 2; }
}
@media (max-width: 800px) {
  .about-03 .split { grid-template-columns: 1fr; gap: 32px; }
  .about-03 .split > .split-text { order: 1; }
  .about-03 .split > img { order: 2; aspect-ratio: 4/3; }
}

/* === REVIEWS (reviews-02) === */
.reviews-02 { background: var(--color-secondary); padding: 96px 24px; color: #fff; }
.reviews-02 .wrap { max-width: 1200px; margin: 0 auto; }
.reviews-02 .hd { text-align: center; margin-bottom: 56px; }
.reviews-02 .hd .eyebrow { color: var(--color-accent); }
.reviews-02 .hd h2 { color: #fff; }
.reviews-02 .quotes { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .reviews-02 .quotes { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }
.reviews-02 .quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.reviews-02 .quote:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.reviews-02 .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.reviews-02 .stars svg { width: 16px; height: 16px; fill: currentColor; }
.reviews-02 .quote-text {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.reviews-02 .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.reviews-02 .author-block .name {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
.reviews-02 .author-block .date {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 2px;
}
.reviews-02 .source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.reviews-02 .source svg { width: 16px; height: 16px; flex-shrink: 0; }

/* === FAQ === */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-secondary);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: transparent;
}
.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after { transform: translateY(2px) rotate(225deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-answer-inner { padding: 0 0 22px; color: var(--color-text-light); }
.faq-item.is-open .faq-answer { max-height: 500px; }

/* === CTA (cta-02) === */
.cta-02 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-secondary);
  padding: 120px 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-02::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,0.82), rgba(15,23,42,0.74));
  z-index: 1;
}
.cta-02 .cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-02 .eyebrow { color: var(--color-accent); margin-bottom: 12px; }
.cta-02 h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-02 p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-02 .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-02 .btn-primary { background: var(--color-primary); }
.cta-02 .btn-primary:hover { background: #fff; color: var(--color-secondary); }
.cta-02 .btn-outline { color: #fff; border-color: #fff; }
.cta-02 .btn-outline:hover { background: #fff; color: var(--color-secondary); }

/* === GALLERY === */
.gallery-01 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-01 .gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--border-radius); aspect-ratio: 4/3; cursor: zoom-in; position: relative; }
.gallery-01 .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-01 .gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-01 .gallery-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.0);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery-01 .gallery-grid figure:hover::after { background: rgba(0,0,0,0.18); }
.gallery-01 .gallery-grid figure:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
@media (max-width: 768px) {
  .gallery-01 .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* === LIGHTBOX === */
.lb-backdrop {
  position: fixed; inset: 0;
  background: rgba(2, 6, 23, 0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lb-backdrop.is-open { display: flex; opacity: 1; }
body.lb-locked { overflow: hidden; }
.lb-image-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-image {
  max-width: 92vw;
  max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
  user-select: none;
}
.lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.lb-btn:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.lb-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 600px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-counter { bottom: 14px; font-size: 0.8rem; }
}

/* === CONTACT (contact-01) === */
.contact-01 { background: var(--color-secondary); padding: 80px 0; }
.contact-01 .grid { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-01 .info-side { color: #fff; }
.contact-01 .info-side h2 { color: #fff; margin-bottom: 12px; }
.contact-01 .accent-line { width: 60px; height: 4px; background: var(--color-primary); border-radius: 4px; margin-bottom: 24px; }
.contact-01 .info-side .lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-01 .info-block { margin-bottom: 24px; color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; }
.contact-01 .info-block .lbl { color: rgba(255,255,255,0.45); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; display: block; }
.contact-01 .info-block strong { color: #fff; display: block; font-weight: 700; font-family: var(--font-heading); margin-bottom: 4px; }
.contact-01 .info-block a { color: var(--color-accent); font-family: var(--font-heading); font-weight: 600; display: block; }
.contact-01 .info-block a:hover { color: #fff; }
.contact-01 .form-side { background: #fff; border-radius: 16px; padding: 36px; }
.contact-01 .form-side h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-01 .form-side .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-01 .form-side .form-group { margin-bottom: 14px; }
.contact-01 .form-side input, .contact-01 .form-side textarea {
  width: 100%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition);
}
.contact-01 .form-side input:focus, .contact-01 .form-side textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-01 .form-side textarea { resize: vertical; min-height: 130px; }
.contact-01 .form-side label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--color-secondary); }
.contact-01 .form-side button[type="submit"] {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-01 .form-side button[type="submit"]:hover { background: var(--color-secondary); transform: translateY(-2px); }
.form-consent { margin: 18px 0 24px; font-size: 0.92rem; color: var(--color-text-light); }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-weight: 400; }
.form-consent input { margin-top: 4px; flex-shrink: 0; width: auto; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }
@media (max-width: 800px) {
  .contact-01 .grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-01 .form-side .row-2 { grid-template-columns: 1fr; }
}

/* === FOOTER (footer-01) === */
.site-footer {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  padding: 64px 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--color-light);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--color-text-on-dark); }
.footer-grid a:hover { color: var(--color-primary); }
.footer-grid p { color: var(--color-text-on-dark); margin-bottom: 8px; }
.footer-01 address { font-style: normal; color: rgba(231,229,228,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-01 address span { display: block; }
.footer-01 .legal-meta { display: block; margin-top: 6px; font-size: 0.85rem; }
.footer-01 .footer-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-01 .footer-bottom-row {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(231,229,228,0.5);
  border-top: 1px solid rgba(231,229,228,0.1);
}
.footer-01 .footer-bottom-row p { margin: 0; }
.footer-01 .footer-bottom-row a { color: rgba(231,229,228,0.7); }
.footer-01 .footer-bottom-row a:hover { color: var(--color-primary); }
.footer-01 .agency-credit a { color: var(--color-primary); font-weight: 600; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: transform var(--transition), background var(--transition);
}
.wa-float:hover { transform: scale(1.08); background: #20bd5a; color: #fff; }
.wa-float svg { display: block; }
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* === LEGAL PAGE (privacy / 404) === */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-page h1 { margin-bottom: 24px; }
.legal-page h2 { font-size: 1.35rem; margin-top: 36px; margin-bottom: 12px; }
.legal-page p, .legal-page li { color: var(--color-text-light); }
.legal-page ul { padding-left: 22px; }

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-page h1 { font-size: clamp(3rem, 10vw, 6rem); margin-bottom: 12px; color: var(--color-primary); }
.error-page p { color: var(--color-text-light); margin-bottom: 28px; max-width: 480px; }
