/* ═══════════════════════════════════════════════════════
   v1 Performance — Main Stylesheet
   Design: Dark (black/red), mobile-first
════════════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #CC0516;
  --red-dark:   #a0040f;
  --black:      #000000;
  --gray-dark:  #0f0f0f;
  --gray-mid:   #1a1a1a;
  --gray-card:  #242424;
  --gray-light: #f0f0f0;
  --white:      #ffffff;
  --wa-green:   #25D366;
  --wa-dark:    #128C7E;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container: 1200px;
  --header-h:  72px;

  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

.text-red { color: var(--red); }


/* ═══════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Primary — Red */
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204, 5, 22, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 28px rgba(204, 5, 22, 0.5);
}

/* WhatsApp — Green */
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.icon-wa {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

/* Logo */
.logo {
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 52px;
  width: auto;
  border-radius: 4px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* WhatsApp button in header — smaller */
.btn-wa--header {
  padding: 10px 18px;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   HERO — Split layout (text left / photo right)
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  overflow: hidden;
}

/* LEFT panel */
.hero-left {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  z-index: 2;
  padding: var(--header-h) 0 60px;
}

/* Diagonal cut on right edge of left panel */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -60px;
  width: 120px;
  height: 100%;
  background: var(--black);
  transform: skewX(-4deg);
  z-index: 1;
}

.hero-content {
  padding: 0 40px 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(204, 5, 22, 0.4);
  border-radius: 2px;
  background: rgba(204, 5, 22, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero-stat__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* RIGHT panel — photo */
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient fade from left (matches the dark panel) */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0) 100%
  );
}

/* Red accent line at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  z-index: 10;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 27%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
  animation: bounce 2.5s infinite;
}

.hero-scroll:hover { color: var(--red); }

.hero-scroll svg {
  width: 30px;
  height: 30px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ═══════════════════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--black);
  padding-top: 96px;
  padding-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 48px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(204,5,22,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .portfolio { padding-top: 64px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}


/* ═══════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════ */
.reviews {
  background: var(--gray-dark);
  padding: 96px 0 80px;
}

/* Rating bar */
.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-score__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.reviews-stars {
  display: flex;
  gap: 2px;
}

.reviews-stars svg {
  width: 22px;
  height: 22px;
}

.reviews-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* Card */
.review-card {
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: rgba(204,5,22,0.3);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar circle */
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--av-color, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.review-location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.review-google-icon {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

.review-stars {
  font-size: 1rem;
  color: #FFC107;
  letter-spacing: 2px;
  line-height: 1;
}

.review-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  flex: 1;
}

.review-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .reviews { padding: 64px 0 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 96px 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Info panel ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  overflow: hidden;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__item:hover {
  background: rgba(255,255,255,0.03);
}

.contact-info__icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-info__value--link {
  transition: color var(--transition);
}

.contact-info__value--link:hover {
  color: var(--red);
}

/* ── Form panel ── */
.contact-form-wrap {
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 36px 36px 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 20px;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
}

.req {
  color: var(--red);
}

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus {
  border-color: var(--red);
  background: rgba(204, 5, 22, 0.06);
}

.form-input:focus::placeholder {
  color: rgba(255,255,255,0.15);
}

/* Date input */
input[type="date"].form-input {
  color-scheme: dark;
}

/* Select */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: var(--white);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Validation error */
.form-error {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
  margin-top: 2px;
}

.form-group.invalid .form-error {
  display: block;
}

.form-group.invalid .form-input {
  border-color: var(--red);
}

/* Submit button */
.btn--submit {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 1rem;
  gap: 10px;
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Success Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  padding: 40px 36px 28px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}

.popup-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.popup-close svg {
  width: 16px;
  height: 16px;
}

.popup-icon {
  width: 68px;
  height: 68px;
  background: rgba(204,5,22,0.12);
  border: 2px solid rgba(204,5,22,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 4px;
}

.popup-icon svg {
  width: 34px;
  height: 34px;
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.popup-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.popup-wa {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.popup-progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.popup-progress__bar {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 100%;
  transform-origin: left;
  animation: none;
}

.popup-overlay.active .popup-progress__bar {
  animation: progress-drain 5s linear forwards;
}

@keyframes progress-drain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.popup-countdown {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .popup {
    padding: 32px 20px 24px;
  }
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 24px 20px;
  }

  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .btn--submit {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   MAP SECTION
════════════════════════════════════════════════════════ */
.map-section {
  background: var(--gray-dark);
  padding-top: 72px;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-wrap {
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  filter: grayscale(30%) contrast(1.05);
}

/* Info card overlaid on map */
.map-card {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -480px; /* align to container left */
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  z-index: 2;
}

.map-card strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}

.map-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.map-card__link {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  margin-top: 8px;
  transition: opacity var(--transition);
}

.map-card__link:hover { opacity: 0.75; }

@media (max-width: 1100px) {
  .map-card {
    position: static;
    transform: none;
    margin: 0;
    border-radius: 0;
    border-top-width: 1px;
    border-left: 4px solid var(--red);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
  }
}


/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

/* Brand col */
.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 3px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-link:hover { color: var(--white); }

/* Other cols */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

/* CTA col */
.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), padding var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-float:hover {
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid var(--wa-green);
  animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 13px 16px 13px 14px;
  }

  .wa-float__label { display: none; }

  .wa-float {
    border-radius: 50%;
    padding: 14px;
  }
}


/* ═══════════════════════════════════════════════════════
   MOBILE — max 768px
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header: hide nav + wa button, show hamburger */
  .nav,
  .btn-wa--header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav — slide down */
  .nav.nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 24px 20px 32px;
    gap: 0;
    border-bottom: 2px solid var(--red);
    z-index: 99;
  }

  .nav--open .nav-link {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav--open .nav-link:last-child {
    border-bottom: none;
  }

  /* Add WhatsApp to mobile nav */
  .nav--open::after {
    content: '';
  }

  /* Hero mobile — stack vertically */
  .hero {
    flex-direction: column;
  }

  .hero-left {
    flex: none;
    width: 100%;
    padding: calc(var(--header-h) + 24px) 0 40px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-right {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .hero-img-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0) 100%
    );
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-scroll {
    left: 50%;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
  }
}


/* ═══════════════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════ */
.services {
  background: var(--gray-dark);
  padding: 96px 0 80px;
}

/* Grid — 5 cols desktop, 3 tablet, 2 mobile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

/* Card */
.service-card {
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid transparent;
  border-radius: 6px;
  padding: 28px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* Featured card (Performance & Tuning) */
.service-card--featured {
  border-top-color: var(--red);
  background: linear-gradient(145deg, #1f0a0c 0%, var(--gray-mid) 60%);
}

.service-card__badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}

/* Icon */
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Title */
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.2;
}

/* Service list */
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
  flex: 1;
}

.service-card__list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.4;
}

.service-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 1px;
}


/* CTA below grid */
.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 28px 36px;
}

.services-cta__text {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.services-cta__btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 64px 0 56px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .services-cta__btns {
    width: 100%;
    flex-direction: column;
  }

  .services-cta__btns .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
