/* ==========================================================
   LLANTERA LATINA — Main Stylesheet
   Dark Industrial Theme: Black, Red, Carbon Gray
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --dark-1:      #111111;
  --dark-2:      #161616;
  --dark-3:      #1c1c1c;
  --carbon:      #222222;
  --gray-dark:   #2a2a2a;
  --gray:        #444444;
  --gray-light:  #777777;
  --red:         #CC0000;
  --red-bright:  #ff2222;
  --red-dark:    #990000;
  --red-glow:    rgba(204,0,0,0.25);
  --white:       #ffffff;
  --off-white:   #f0f0f0;
  --text-muted:  #999999;
  --border:      rgba(255,255,255,0.07);
  --border-red:  rgba(204,0,0,0.35);

  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition:  0.3s ease;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-red:  0 0 40px rgba(204,0,0,0.3);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

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

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-bright); box-shadow: var(--shadow-red); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 0 30px rgba(37,211,102,0.4); }

.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--red); background: var(--carbon); }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border-red);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--white);
}
.logo-name .red { color: var(--red); }

.logo-tagline {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 2.5px;
  color: var(--gray-light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 2px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-bright); color: var(--white) !important; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 10px;
  margin-left: 6px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  padding: 2px 5px;
}
.lang-btn.active { color: var(--red); }
.lang-btn:hover { color: var(--white); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 11px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--dark-1);
  border-left: 1px solid var(--border-red);
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.77,0,0.18,1);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-link:hover { color: var(--red); padding-left: 8px; }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--red);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

/* ── Hero — Video Full-Screen ───────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Video full-screen background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.50) 50%,
      rgba(0,0,0,0.75) 100%
    );
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Centered content — above canvas */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 6px 16px;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  letter-spacing: 6px;
  line-height: 0.88;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title .hero-line1 { color: var(--white); }
.hero-title .hero-line2 { color: var(--red); text-shadow: 0 0 80px rgba(204,0,0,0.7), 0 4px 40px rgba(0,0,0,0.6); }

/* Red divider */
.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 28px auto;
  box-shadow: 0 0 20px rgba(204,0,0,0.6);
}

/* Main motto */
.hero-motto {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Page Banner (inner pages) ─────────────────────────── */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-1);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(204,0,0,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}
.page-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 12px;
}
.page-banner p {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.banner-line {
  width: 60px; height: 3px;
  background: var(--red);
  margin-bottom: 20px;
}

/* ── Products Section ──────────────────────────────────── */
.products-section { background: var(--dark-1); }

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

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.65) saturate(0.8);
}
.product-card:hover .product-card-img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(0.6);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: background var(--transition);
}
.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(204,0,0,0.15) 50%, transparent 100%);
}

.product-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(0);
  transition: transform var(--transition);
}

.product-card-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(204,0,0,0.2);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.product-card:hover .product-card-number { color: rgba(204,0,0,0.4); }

.product-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-card:hover .product-card-desc { opacity: 1; transform: translateY(0); }

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.product-card:hover .product-card-cta { opacity: 1; transform: translateY(0); }

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-section {
  background: var(--red);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* ── Services Section ──────────────────────────────────── */
.services-section { background: var(--black); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--dark-2);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.service-card:hover { border-color: var(--border-red); background: var(--dark-3); }
.service-card:hover::before { height: 100%; }

.service-icon {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Gallery ───────────────────────────────────────────── */
.gallery-section { background: var(--dark-1); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
  margin-top: 64px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(4),
.gallery-item:nth-child(7) { grid-column: span 2; }

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.8) saturate(0.85);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.6);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(204,0,0,0.15);
}
.gallery-hover i { font-size: 28px; }
.gallery-hover span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(204,0,0,0.7);
  border: none;
  color: var(--white);
  font-size: 24px;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-btn:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark-1);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(204,0,0,0.18) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── About Page ────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.85);
}
.about-img-border {
  position: absolute;
  top: -16px; right: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 2px solid var(--red);
  z-index: -1;
  pointer-events: none;
}

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

.value-card {
  background: var(--dark-2);
  padding: 36px 28px;
  border-top: 3px solid var(--red);
  transition: background var(--transition), transform var(--transition);
}
.value-card:hover { background: var(--dark-3); transform: translateY(-4px); }
.value-icon {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Brands ────────────────────────────────────────────── */
.brands-section {
  background: var(--dark-2);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  margin-bottom: 32px;
}
.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.brand-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gray);
  transition: color var(--transition);
  text-transform: uppercase;
}
.brand-item:hover { color: var(--white); }
.brand-item img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity var(--transition);
}
.brand-item img:hover { opacity: 0.8; }

/* ── Process Steps ─────────────────────────────────────── */
.process-section { background: var(--dark-1); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-red), transparent);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px; height: 80px;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  background: var(--dark-1);
  margin-bottom: 24px;
  transition: background var(--transition);
}
.process-step:hover .step-number { background: var(--red); color: var(--white); }
.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Contact Section ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 64px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--dark-2);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--border-red); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}
.contact-card-value a { transition: color var(--transition); }
.contact-card-value a:hover { color: var(--red); }

/* ── Contact/Quote Form ────────────────────────────────── */
.form-box {
  background: var(--dark-2);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--dark-3);
  border: 1px solid var(--gray-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--red); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray); }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Appointment Page ──────────────────────────────────── */
.appointment-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 64px;
}

.hours-box {
  background: var(--dark-2);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.hours-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-red);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-closed { color: var(--red); }

.quick-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.quick-btn-call { background: var(--red); color: var(--white); }
.quick-btn-call:hover { background: var(--red-bright); }
.quick-btn-wa { background: #25D366; color: var(--white); }
.quick-btn-wa:hover { background: #1ebe5d; }

/* ── Map ───────────────────────────────────────────────── */
.map-section { background: var(--dark-1); }
.map-wrapper {
  height: 400px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 64px;
  filter: grayscale(0.3) invert(0.9) hue-rotate(175deg) brightness(0.85);
}
.map-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* ── Social Media ──────────────────────────────────────── */
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 48px; height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); }
.social-link.facebook:hover { background: #1877F2; border-color: #1877F2; }

/* ── Legal Pages ───────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-date {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--dark-1);
  border-top: 1px solid var(--border-red);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { font-size: 32px; margin-bottom: 10px; }
.footer-slogan {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-item i { color: var(--red); margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--red); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--gray-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--red); }

/* ── Floating WhatsApp ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--white);
  z-index: 990;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-ring 2.5s ease infinite;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Reveal Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .hero-left { padding: 120px 40px 80px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero-title { font-size: clamp(64px, 16vw, 120px); }
  .hero-content { padding: 0 24px; }
  .hero-motto { font-size: clamp(16px, 4vw, 26px); letter-spacing: 3px; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .appointment-layout { grid-template-columns: 1fr; }
  .hours-box { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 16/9; }
  .product-card-desc { opacity: 1; transform: none; }
  .product-card-cta { opacity: 1; transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-ctas { justify-content: center; }
  .page-banner { height: 280px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
}
