/* ═══════════════════════════════════════════════
   PRIME FORM CONCRETE INC.
   Industrial Dark Theme · Orange Accents · Oswald
═══════════════════════════════════════════════ */

:root {
  --orange:       #E8600A;
  --orange-light: #FF8C00;
  --orange-glow:  rgba(232, 96, 10, 0.22);
  --silver:       #B8B8B8;
  --dark:         #0D0D0D;
  --dark2:        #111111;
  --card:         #181818;
  --card2:        #1E1E1E;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(232, 96, 10, 0.35);
  --text:         #EFEFEF;
  --text-muted:   #7A7A7A;
  --radius:       8px;
  --radius-sm:    4px;
  --font:         'Inter', sans-serif;
  --font-display: 'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.orange-text { color: var(--orange-light); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(232,96,10,0.2);
}
.nav-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-links .nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
.lang-toggle {
  background: none;
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  transform-style: preserve-3d;
  perspective: 600px;
}
.lang-toggle::before {
  content: '🌐';
  font-size: 0.85rem;
  display: inline-block;
  transition: transform 0.6s ease;
}
.lang-toggle:hover {
  background: rgba(232,96,10,0.12);
  box-shadow: 0 0 12px rgba(232,96,10,0.3);
}
.lang-toggle:hover::before {
  transform: rotateY(180deg);
}
@keyframes lang-revolve {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.lang-toggle.spinning::before {
  animation: lang-revolve 0.55s ease-in-out;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 55% at 65% 45%, rgba(232,96,10,0.1) 0%, transparent 65%),
    linear-gradient(160deg, #0D0D0D 0%, #121212 60%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
}
.hero-content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--orange-light);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.85;
}
.hero-sub em {
  color: var(--orange-light);
  font-style: normal;
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.stars { color: var(--orange-light); letter-spacing: 2px; }
.trust-text { color: var(--text-muted); font-weight: 500; }

/* Brand card (hero right) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 60px rgba(232,96,10,0.1), 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
}
.brand-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
}
.brand-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.brand-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.stat span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,96,10,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,96,10,0.5);
}
.btn-primary.large { padding: 16px 40px; font-size: 1.05rem; }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-light); }
.pulse {
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(232,96,10,0.35); }
  50%      { box-shadow: 0 4px 36px rgba(232,96,10,0.65); }
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header.left-align { text-align: left; }
.section-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--orange-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── SERVICES ── */
.services {
  background: var(--dark2);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 32px 28px;
  position: relative;
  transition: background 0.25s;
}
.service-card:hover {
  background: var(--card2);
}
.service-card.featured {
  background: linear-gradient(160deg, #1C1410 0%, #181818 100%);
  border-color: var(--border-accent);
}
.service-card.featured:hover {
  background: linear-gradient(160deg, #221810 0%, #1c1c1c 100%);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232,96,10,0.18);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.3px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-cta {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.service-cta:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--dark);
  padding: 100px 0;
}
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--card);
  padding: 40px 32px;
  flex: 1;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--card2); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,96,10,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.3px;
}
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.step-arrow {
  display: none;
}

/* ── WHY US ── */
.why-us {
  background: var(--dark2);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.why-statement {
  position: sticky;
  top: 120px;
}
.statement-card {
  background: var(--card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.statement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.statement-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.7;
}
.statement-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}
.statement-sig {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sig-bar {
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.statement-sig span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-light);
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.why-item:first-of-type { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  min-width: 28px;
  padding-top: 3px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: 0.3px;
}
.why-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.why-points .btn-primary { margin-top: 28px; align-self: flex-start; }

/* ── TRUCK CTA ── */

/* ── FINAL CTA ── */
.final-cta {
  background: var(--dark2);
  padding: 100px 0;
}
.cta-card {
  background: var(--card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(232,96,10,0.08);
}
.cta-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cta-card > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.75;
}
.cta-note {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── FOOTER ── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
  text-align: center;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }
.footer-copy { color: #383838; font-size: 0.76rem; }

/* ══════════════════════════════════════════════
   CHAT WIDGET
══════════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 6px 24px rgba(232,96,10,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex-shrink: 0;
}
.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,96,10,0.6);
}
.chat-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: #e53e3e;
  color: white;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  animation: badgePulse 1.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

.chat-window {
  width: min(380px, calc(100vw - 48px));
  background: #141414;
  border: 1px solid rgba(232,96,10,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  display: none;
  flex-direction: column;
  max-height: min(580px, calc(100vh - 120px));
  animation: slideUp 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.chat-window.open { display: flex; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: #181818;
  border-bottom: 1px solid rgba(232,96,10,0.15);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar-wrap {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-avatar-initials {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.chat-header-info { flex: 1; }
.chat-header-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.chat-header-info small {
  color: var(--text-muted);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.online-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #48bb78;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.chat-close:hover { background: rgba(255,255,255,0.07); color: var(--text); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.msg {
  display: flex;
  gap: 8px;
  max-width: 90%;
  align-items: flex-end;
}
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-avatar {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.55;
  word-break: break-word;
}
.msg.bot .msg-bubble {
  background: #222;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 2px;
  color: var(--text);
}
.msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-bottom-right-radius: 2px;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
  padding-left: 34px;
}
.chat-option-btn {
  background: rgba(232,96,10,0.08);
  border: 1px solid rgba(232,96,10,0.35);
  color: var(--orange-light);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.chat-option-btn:hover {
  background: rgba(232,96,10,0.2);
  transform: translateY(-1px);
}
.chat-option-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
  background: #222;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-bottom-left-radius: 2px;
  width: fit-content;
}
.typing-indicator span {
  width: 5px; height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0);   opacity: 0.35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

.chat-input-area {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 8px;
  background: #141414;
}
#chatInput {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
#chatInput:focus { border-color: rgba(232,96,10,0.45); }
#chatInput::placeholder { color: #444; }
/* Camera / image attach button */
.chat-img-label {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
  color: var(--text-muted);
}
.chat-img-label:hover {
  background: rgba(232,96,10,0.15);
  border-color: rgba(232,96,10,0.35);
  color: var(--orange-light);
}

/* Image preview inside chat */
.msg-img-bubble {
  padding: 6px !important;
  background: rgba(232,96,10,0.1) !important;
  border: 1px solid rgba(232,96,10,0.25) !important;
}
.chat-img-preview {
  max-width: 200px;
  max-height: 160px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}
.chat-img-caption {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

#chatSend {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
#chatSend:hover { transform: scale(1.08); }
#chatSend:disabled { opacity: 0.35; cursor: default; transform: none; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: #0D0D0D;
  border-top: 1px solid rgba(232,96,10,0.2);
  border-bottom: 1px solid rgba(232,96,10,0.2);
  padding: 14px 0;
  overflow-x: auto;
}
.trust-strip-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon { color: var(--orange); font-weight: 700; }
.trust-español { color: var(--orange-light); }
.trust-sep { color: #2a2a2a; font-size: 1rem; }

/* ── NAV PHONE ── */
.nav-phone {
  color: var(--orange-light) !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}
.nav-phone:hover { color: white !important; }

/* ── STEP LINK ── */
.step-link {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
}
.step-link:hover { text-decoration: underline; }

/* ── SERVICE AREAS ── */
.areas {
  background: var(--dark);
  padding: 100px 0;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.area-card {
  background: var(--card);
  padding: 26px 24px;
  transition: background 0.2s;
}
.area-card:hover { background: var(--card2); }
.area-card.featured {
  background: linear-gradient(160deg, #1C1410, #181818);
}
.area-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.area-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
}
.areas-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.areas-note a {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
}
.areas-note a:hover { text-decoration: underline; }

/* ── CREDENTIALS ── */
.credentials {
  margin-top: 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cred-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.cred-item:last-child { border-bottom: none; }
.cred-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cred-value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-light);
  text-align: right;
}

/* ── CTA ACTIONS ── */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ── FOOTER CONTACT ── */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-contact-item:hover { opacity: 0.75; }
.footer-contact-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.footer-contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-light);
}
.footer-contact-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.footer-lic {
  color: #383838;
  font-size: 0.76rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

/* ── TRUCK CTA ── */
.truck-cta {
  background: linear-gradient(135deg, var(--dark2) 0%, #0a0a0a 100%);
  padding: 100px 0;
}

.truck-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.truck-frame:hover .truck-img {
  transform: scale(1.04);
}

.truck-phone {
  position: absolute;
  right: 5%;
  bottom: 8%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(232, 96, 10, 0.4);
  transition: all 0.3s ease;
  animation: truckPhoneFloat 3s ease-in-out infinite;
}

.truck-phone:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 40px rgba(232, 96, 10, 0.6);
}

.truck-phone-icon {
  font-size: 20px;
}

.truck-phone-label {
  display: block;
}

.truck-phone-number {
  font-size: 12px;
  opacity: 0.95;
  font-weight: 500;
}

@keyframes truckPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 640px) {
  .truck-cta {
    padding: 60px 0;
  }

  .truck-phone {
    right: 50%;
    bottom: 15%;
    transform: translateX(50%);
  }

  .truck-phone:hover {
    transform: translateX(50%) scale(1.1) translateY(-4px);
  }
}

/* ── CONTACT FORM ── */
.contact {
  background: var(--dark2);
  padding: 100px 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.req { color: var(--orange); }
.opt { color: #444; font-size: 0.7rem; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232,96,10,0.5); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #333; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23555'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.field-err {
  font-size: 0.76rem;
  color: #e53e3e;
  min-height: 16px;
  display: block;
}

/* Label row (label + magic pencil side by side) */
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Magic Pencil button */
.magic-pencil-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,96,10,0.1);
  border: 1px solid rgba(232,96,10,0.4);
  color: var(--orange-light);
  padding: 5px 13px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.magic-pencil-btn:hover {
  background: rgba(232,96,10,0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,96,10,0.25);
}
.magic-pencil-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.magic-pencil-btn .mp-icon {
  font-size: 0.9rem;
  animation: none;
}
.magic-pencil-btn.enhancing .mp-icon {
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.magic-status {
  font-size: 0.78rem;
  margin-top: 6px;
  min-height: 18px;
  transition: color 0.2s;
}
.magic-status.success { color: #48bb78; }
.magic-status.error   { color: #fc8181; }
.magic-status.loading { color: var(--orange-light); }

.form-result {
  margin-top: 16px;
  font-size: 0.88rem;
  min-height: 20px;
}
.form-result.success {
  color: #48bb78;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.form-result.error { color: #fc8181; }

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color 0.2s;
}
.sidebar-card:hover { border-color: var(--border-accent); }
.sidebar-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sidebar-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-light);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.sidebar-phone:hover { color: white; }
.sidebar-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.sidebar-email {
  display: block;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  word-break: break-all;
  transition: color 0.2s;
}
.sidebar-email:hover { color: white; }
.sidebar-hours {
  font-size: 0.85rem !important;
  color: var(--text) !important;
  margin-bottom: 6px;
}
.sidebar-chat-note {
  font-size: 0.72rem;
  color: var(--orange-light);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sidebar-insta {
  display: block;
  color: var(--orange-light);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.sidebar-insta:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-statement { position: static; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .brand-card { max-width: 300px; padding: 28px 24px 22px; }
  .brand-logo { max-width: 180px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; }
  .nav-links .nav-cta { margin: 8px 28px; }
  .hamburger { display: flex; }

  .steps {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .section-header.left-align { text-align: center; }
  .why-points .btn-primary { align-self: center; }
  .chat-widget { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 70px; }
  .services, .how-it-works, .why-us, .reviews, .final-cta { padding: 70px 0; }
  .cta-card { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}
