/* ============================================
   LOS PRIMOS MOBILE TIRES — v4 Editorial
   Dark · Bold · Unique · Minimal Yet Striking
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   GRAIN TEXTURE — Premium feel
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px;
}

/* ============================================
   MOBILE STICKY CALL BAR
   ============================================ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 15px;
  background: #D42027;
  color: #fff;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 -4px 24px rgba(212,32,39,0.4);
}

@media (min-width: 769px) {
  .mobile-bar { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px 40px;
}

/* Vertical red accent line */
.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #D42027);
  animation: lineGrow 1.5s ease-out both;
}

@keyframes lineGrow {
  from { height: 0; opacity: 0; }
  to { height: 80px; opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Logo area */
.hero-logo-area {
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,32,39,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.logo {
  width: 220px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(212,32,39,0.15));
  animation: fadeIn 1s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Hero text */
.hero-text {
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-tag {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D42027;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

/* Outline/stroke text effect — this is the unique creative element */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  transition: all 0.5s ease;
}

.outline-text:hover {
  color: #fff;
  -webkit-text-stroke: 0px;
}

.outline-text-sm {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  text-stroke: 1.5px #fff;
}

.hero-tag-es {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  font-weight: 300;
}

/* Phone button */
.hero-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 48px;
  background: #D42027;
  border-radius: 16px;
  margin-bottom: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 40px rgba(212,32,39,0.3);
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-phone:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 60px rgba(212,32,39,0.45);
}

.hp-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

.hp-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.65s both;
}

.hero-badges span {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.3s;
}

.hero-badges span:hover {
  border-color: rgba(212,32,39,0.3);
  color: rgba(255,255,255,0.7);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease-out 1s both;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(212,32,39,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MARQUEE — Scrolling service names
   ============================================ */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(212,32,39,0.03);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION LABELS — Numbered, editorial style
   ============================================ */
.sec-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.sec-label em {
  font-style: italic;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
}

.label-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #D42027;
  padding: 4px 10px;
  border: 1px solid rgba(212,32,39,0.3);
  border-radius: 6px;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES — Numbered list, editorial
   ============================================ */
.services {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-grid {
  display: flex;
  flex-direction: column;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.svc-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc-item:hover {
  padding-left: 16px;
  background: rgba(212,32,39,0.03);
  border-color: rgba(212,32,39,0.1);
}

.svc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #D42027;
  min-width: 28px;
  opacity: 0.5;
}

.svc-item:hover .svc-num {
  opacity: 1;
}

.svc-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.svc-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: 2px;
}

.svc-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.svc-item:hover .svc-arrow {
  color: #D42027;
  transform: translateX(4px);
}

/* ============================================
   AREAS — Flowing text
   ============================================ */
.areas {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.areas-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin-bottom: 20px;
}

.areas-flow span {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  transition: color 0.3s;
  padding: 0 4px;
}

.areas-flow span:hover {
  color: #fff;
}

.areas-flow .dot {
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: #D42027;
  font-weight: 300;
  padding: 0 8px;
}

.areas-more {
  color: rgba(255,255,255,0.3) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
}

.areas-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ============================================
   BIG CTA — Phone number huge
   ============================================ */
.big-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(212,32,39,0.04) 0%, rgba(212,32,39,0.01) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.cta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D42027;
  margin-bottom: 24px;
}

.cta-phone {
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-phone:hover {
  transform: scale(1.04);
}

.cta-phone-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  transition: color 0.3s;
}

.cta-phone:hover .cta-phone-num {
  color: #D42027;
}

.cta-sub {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ============================================
   HOURS — Minimal with dotted lines
   ============================================ */
.hours {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-minimal {
  max-width: 560px;
}

.hm-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hm-row:last-child { border-bottom: none; }

.hm-days {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.hm-days em {
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

.hm-line {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.hm-time {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   CONTACT — Split layout
   ============================================ */
.contact {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}

.cl-es {
  font-style: italic;
  color: rgba(255,255,255,0.25) !important;
  font-size: 0.88rem !important;
  margin-bottom: 28px !important;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #D42027;
  margin-bottom: 32px;
  transition: transform 0.3s;
}

.contact-phone-link:hover {
  transform: translateX(4px);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-details div {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.contact-details strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.f-field label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: rgba(212,32,39,0.5);
}

.f-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.f-field select option {
  background: #151515;
  color: #fff;
}

.f-field textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #D42027;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(212,32,39,0.25);
  margin-top: 8px;
}

.submit-btn:hover {
  background: #B01A1F;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,32,39,0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 100px; /* extra for mobile bar */
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-logo {
  height: 40px;
  filter: brightness(0.9);
}

.footer-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #D42027;
  letter-spacing: 0.5px;
}

.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .logo {
    width: 180px;
  }

  .hero-phone {
    width: 100%;
    border-radius: 14px;
  }

  .hero-badges span {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .scroll-hint { display: none; }

  .services,
  .areas,
  .hours,
  .contact,
  .big-cta {
    padding: 64px 0;
  }

  .svc-item {
    gap: 16px;
    padding: 18px 0;
  }

  .svc-item h3 { font-size: 1rem; }
  .svc-arrow { display: none; }

  .areas-flow span {
    font-size: 1.1rem;
  }

  .areas-flow .dot {
    padding: 0 6px;
    font-size: 0.8rem;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }

  .hero h1 { font-size: 2.8rem; }

  .outline-text {
    -webkit-text-stroke: 1.5px #fff;
  }

  .cta-phone-num {
    font-size: 2.2rem;
  }

  .hm-row {
    flex-wrap: wrap;
    gap: 4px;
  }

  .hm-line { display: none; }
}
