/* ==========================================================================
   TRAZZA.ME — REPLICA VISUAL ESTRICTA (ESTILO ARQUITECTÓNICO MONUMENTAL)
   Basado en la referencia gráfica: paleta clara, tipografía bold, acentos amarillos,
   tarjetas blancas puras y contraste en negro profundo.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&family=Poppins:wght@500;600;700;800;900&display=swap');

:root {
  /* Exact Palette from Reference */
  --bg-page: #F4F3EF;
  --bg-card: #FFFFFF;
  --bg-surface: #EFEFEA;
  
  --text-black: #0A0A0A;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  
  --accent-yellow: #FACC15;
  --accent-gold: #CA8A04;
  --accent-yellow-glow: rgba(250, 204, 21, 0.35);
  
  --border-subtle: #E5E7EB;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.09);
  
  --radius-pill: 9999px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  
  --container-max: 1540px;
  --container-wide: 1800px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-black);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

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

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 2.5vw, 36px);
}

.hero-container {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
}

/* Header & Navbar (Sticky Glass Navigation) */
.site-header {
  width: 100%;
  padding: 16px 0;
  background: rgba(244, 243, 239, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(244, 243, 239, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Full-Bleed Overlay Modifier (Used exclusively on index.html hero panorama) */
.site-header.site-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(244, 243, 239, 0.95) 0%, rgba(244, 243, 239, 0.6) 60%, transparent 100%);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.site-header-overlay.scrolled {
  position: fixed;
  background: rgba(244, 243, 239, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--text-black);
  display: flex;
  align-items: baseline;
}

.brand-logo span.dot {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.btn-black-pill {
  background: #000000;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-black-pill:hover {
  background: #262626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section (Edge-to-Edge Full-Bleed Panorama) */
.hero-section {
  padding: 0;
  margin: 0 0 50px 0;
  position: relative;
  width: 100%;
}

.hero-scene-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

.hero-scene-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  image-rendering: -webkit-optimize-contrast;
}

.hero-text-overlay {
  position: absolute;
  top: clamp(100px, 9.5vw, 155px);
  left: clamp(24px, 4.5vw, 85px);
  max-width: min(650px, 48%);
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1F2937;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: radarPulse 1.8s infinite;
}

.hero-text-overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.22vw, 1.2rem);
  color: #374151;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 490px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-primary-pill {
  background: #000000;
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.btn-primary-pill:hover {
  background: #262626;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.btn-secondary-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111827;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-pill:hover {
  background: #FFFFFF;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: #000000;
}

/* Yellow Highlighter Effect */
.highlight-yellow {
  background-color: #FDE047;
  color: #000000;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  display: inline;
}

/* Trust Badge (High-Definition Avatars & Metrics) */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 18px 8px 14px;
  border-radius: 9999px;
  width: fit-content;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #FFFFFF;
  object-fit: cover;
  display: block;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-item:hover {
  transform: translateY(-3px) scale(1.15);
  z-index: 3;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-black);
  line-height: 1.1;
}

.trust-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.trust-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Section Title Generic */
.section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 50px 0 28px;
  color: var(--text-black);
}

/* Section 1: NUESTRO IMPACTO VISUAL (Portfolio Grid) */
.portfolio-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 0.75fr;
  gap: 16px;
  margin-bottom: 50px;
}

.portfolio-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-3px);
}

.portfolio-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #E5E7EB;
}

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

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.04);
}

.portfolio-card.tall .portfolio-img {
  height: clamp(280px, 20vw, 360px);
}

.portfolio-card.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-subcard {
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: var(--transition);
}

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

.portfolio-subcard .portfolio-img {
  height: clamp(130px, 9.5vw, 172px);
  border-radius: 10px;
}

.portfolio-caption {
  padding: 8px 2px 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.35;
  background: transparent;
}

/* Section 2: SERVICIOS ESPECIALIZADOS */
.services-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.service-box {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.service-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FEF9C3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B45309;
}

.service-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-black);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4B5563;
  font-weight: 500;
}

.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #EAB308;
  flex-shrink: 0;
}

/* Section 3: CONSIGUE TU COTIZACIÓN GRATUITA */
.quote-banner-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-bottom: 50px;
}

.quote-banner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.quote-banner-thumb {
  background: #0F172A;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.quote-banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.quote-banner-thumb:hover img {
  transform: scale(1.03);
}

.quote-thumb-badge {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: rgba(10, 15, 25, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 204, 21, 0.4);
  padding: 8px 12px;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.quote-banner-form {
  padding: 26px 32px;
}

.quote-banner-form h2 {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #0A0A0A;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input-pill {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #71717A;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-black);
  outline: none;
  transition: var(--transition);
}

.form-input-pill:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.form-textarea {
  width: 100%;
  height: 100%;
  min-height: 98px;
  background: #FFFFFF;
  border: 1px solid #71717A;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-black);
  resize: none;
  outline: none;
}

.form-textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Interactive Cotizador Enhancements */
.industry-selector-wrap {
  margin-bottom: 16px;
}
.industry-selector-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-chip {
  background: #F4F3EF;
  border: 1px solid #D1D5DB;
  color: #374151;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.industry-chip:hover, .industry-chip.active {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

/* Live Typography Preview Box */
.font-preview-container {
  background: #0D0E12;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  margin: 10px 0 14px;
  border: 1px solid #27272A;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.font-preview-tag {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #71717A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.font-preview-text {
  font-size: 1.35rem;
  transition: all 0.25s ease;
}
.font-preview-neon {
  font-family: 'Dancing Script', cursive, sans-serif;
  color: #FDE047;
  text-shadow: 0 0 8px rgba(253, 224, 71, 0.9), 0 0 16px rgba(253, 224, 71, 0.4);
}
.font-preview-block {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px #FACC15;
}
.font-preview-sans {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.font-preview-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #FACC15;
}

/* Live Estimate Price Banner */
.estimate-price-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FBF8EE;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 12px;
}
.estimate-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.estimate-price-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000000;
}

.attach-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #4B5563;
  margin: 6px 0 14px;
  cursor: pointer;
}

.attach-line:hover {
  color: #000000;
}

.btn-submit-black {
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-black:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Section: Soluciones por Industria */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.solution-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.solution-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #E5E7EB;
}
.solution-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-card:hover .solution-img-wrap img {
  transform: scale(1.05);
}
.solution-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solution-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0A0A0A;
}
.solution-content p {
  font-size: 0.76rem;
  color: #4B5563;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.solution-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.solution-link:hover {
  color: #B45309;
}

/* Section: Barras Comerciales & Eventos */
.event-bars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.event-bar-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.event-bar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.event-bar-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #E5E7EB;
}
.event-bar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-bar-card:hover .event-bar-img img {
  transform: scale(1.05);
}
.event-bar-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-bar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #B45309;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.event-bar-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 6px;
}
.event-bar-body p {
  font-size: 0.78rem;
  color: #4B5563;
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
}
.event-bar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #F3F4F6;
}
.event-bar-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0A0A0A;
}
.btn-bar-quote {
  background: #000000;
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-bar-quote:hover {
  background: #FACC15;
  color: #000000;
}

/* Section: Proyectos Reales Georreferenciados */
.real-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.project-case-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}
.case-badge-city {
  display: inline-block;
  align-self: flex-start;
  background: #F4F3EF;
  color: #1F2937;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  border: 1px solid #E5E7EB;
}
.case-rating {
  color: #F59E0B;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.case-quote {
  font-size: 0.82rem;
  color: #374151;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.case-client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #F3F4F6;
  padding-top: 10px;
}
.case-client-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.case-client-details h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0A0A0A;
}
.case-client-details span {
  font-size: 0.7rem;
  color: #6B7280;
}

/* Logos Bar */
.logos-bar {
  padding: 30px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-light);
}

.logos-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.55;
  filter: grayscale(100%);
  gap: 30px;
}

.logos-wrap:hover {
  opacity: 0.8;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #4B5563;
}

/* Municipalities Hub Bar */
.municipalities-hub {
  padding: 30px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.muni-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.muni-chip {
  background: #F4F3EF;
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
}

.muni-chip:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

/* Dark Footer */
.site-footer-dark {
  background: #000000;
  color: #FFFFFF;
  padding: 55px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-col p, .footer-col a {
  color: #9CA3AF;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--accent-yellow);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--accent-yellow);
  color: #000000;
}

.footer-bottom-line {
  border-top: 1px solid #1F2937;
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: #6B7280;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--bg-page);
    padding: 16px 0;
  }
  .hero-text-overlay {
    position: static;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 20px 20px 0;
  }
  .hero-scene-img {
    border-radius: 0;
  }
  .portfolio-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-card.tall .portfolio-img {
    height: 180px;
  }
  .services-triad {
    grid-template-columns: 1fr;
  }
  .quote-banner-grid {
    grid-template-columns: 1fr;
  }
  .quote-banner-thumb {
    display: none;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .muni-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .muni-hero-media {
    margin-left: 0 !important;
    margin-top: 10px;
    justify-content: center;
  }
  .muni-hero-img {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-text-overlay h1 {
    font-size: 2.1rem;
  }
  .nav-links {
    display: none;
  }
  .portfolio-mosaic {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .logos-wrap {
    justify-content: center !important;
  }
}

/* Radar Pulse Indicator for Engineering Badges */
@keyframes radarPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #22C55E; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* ==========================================================================
   CLIENT LOGOS BAR (HIGH-FIDELITY MONOCHROME TO COLOR)
   ========================================================================== */
.client-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.client-logo-img {
  max-height: 38px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(120%);
  opacity: 0.65;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-link:hover .client-logo-img {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
  transform: scale(1.08);
}

/* ==========================================================================
   MUNICIPAL LANDING PAGES LAYOUT & PRODUCT CATALOG
   ========================================================================== */
.muni-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 14px;
}

.muni-breadcrumb a {
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.muni-breadcrumb a:hover {
  color: var(--text-black);
}

.muni-breadcrumb .sep {
  color: #9CA3AF;
  font-size: 0.75rem;
}

.muni-breadcrumb span.current {
  color: #111827;
  font-weight: 700;
}

.muni-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 36px 0 54px;
  position: relative;
}

.muni-hero-info {
  position: relative;
  z-index: 2;
}

.muni-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FACC15;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(250, 204, 21, 0.25);
}

.muni-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.muni-hero-desc {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* 3D Floating Diorama without white box, overlapping left column */
.muni-hero-media {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  margin-left: -55px; /* Overlaps slightly over the left text box */
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: grab;
}

.muni-hero-img {
  width: 100%;
  max-width: 600px;
  max-height: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.22)) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.1));
  will-change: transform;
  transform-origin: center center;
  transition: filter 0.3s ease;
  animation: dioramaLevitate 6s ease-in-out infinite;
}

@keyframes dioramaLevitate {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

.muni-hero-media:active {
  cursor: grabbing;
}

/* Municipal Product Showcase Grid */
.muni-products-section {
  padding: 50px 0 60px;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin: 30px 0 50px;
}

.muni-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.muni-section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #B45309;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(250, 204, 21, 0.18);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 10px;
}

.muni-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.muni-section-subtitle {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
}

.muni-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .muni-products-grid {
    grid-template-columns: 1fr;
  }
}

.muni-product-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.muni-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}

.muni-product-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F3F4F6;
}

.muni-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.muni-product-card:hover .muni-product-thumb img {
  transform: scale(1.05);
}

.muni-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.82);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.muni-product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.muni-product-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.muni-product-body p {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.muni-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.muni-product-features li {
  font-size: 0.78rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.muni-product-features li span.check {
  color: #16A34A;
  font-weight: bold;
}

.muni-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 9999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.muni-product-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.muni-cross-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4B5563;
  text-decoration: none;
  margin-top: 10px;
  align-self: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.muni-cross-link:hover {
  color: #000000;
  text-decoration: underline;
  transform: translateX(3px);
}

.muni-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 60px;
}

@media (max-width: 820px) {
  .muni-specs-grid {
    grid-template-columns: 1fr;
  }
}

.muni-spec-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.muni-spec-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.muni-spec-card p, .muni-spec-card ul {
  font-size: 0.82rem;
  color: #4B5563;
  line-height: 1.55;
}

.muni-spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.muni-spec-card ul li::before {
  content: '✓ ';
  color: #B45309;
  font-weight: bold;
}

/* ==========================================================================
   PÁGINAS DE SERVICIOS Y PRODUCTOS INDIVIDUALES (SEO & CONVERSIÓN B2B)
   ========================================================================== */
.breadcrumbs-bar {
  padding: 16px 0 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs-list li a {
  color: #4B5563;
  transition: var(--transition);
}

.breadcrumbs-list li a:hover {
  color: #000000;
  text-decoration: underline;
}

.breadcrumbs-list li.active {
  color: #9CA3AF;
  font-weight: 500;
}

.breadcrumbs-separator {
  color: #D1D5DB;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 24px 0 50px;
}

@media (max-width: 960px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FACC15;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.service-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.service-hero-desc {
  font-size: 1.02rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.service-price-pill .price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #B45309;
}

.service-price-pill .price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A0A0A;
}

.service-hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: center;
}

.service-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.service-hero-media:hover .service-hero-img {
  transform: scale(1.02);
}

.service-hero-caption {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 10px;
  text-align: center;
}

/* Specs Table & Details */
.specs-table-container {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.specs-table th, .specs-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #F3F4F6;
}

.specs-table th {
  background: #F9FAFB;
  font-weight: 700;
  color: #111827;
  width: 32%;
}

.specs-table td {
  color: #374151;
}

.specs-table tr:last-child td, .specs-table tr:last-child th {
  border-bottom: none;
}

/* Friendly Quote Box */
.friendly-quote-box {
  background: linear-gradient(135deg, #18181B 0%, #09090B 100%);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.friendly-quote-box h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.friendly-quote-box p {
  color: #D4D4D8;
  font-size: 0.92rem;
  max-width: 620px;
  line-height: 1.55;
  margin: 0;
}

.btn-whatsapp-cta {
  background: #FACC15;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.5);
  background: #EAB308;
}

/* Benefit Cards Grid */
.benefits-triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
}

@media (max-width: 860px) {
  .benefits-triad-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-pill-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.benefit-pill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.benefit-pill-card .benefit-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: inline-block;
}

.benefit-pill-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.benefit-pill-card p {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

/* FAQs Cards Grid */
.faq-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 50px;
}

@media (max-width: 820px) {
  .faq-compact-grid {
    grid-template-columns: 1fr;
  }
}

.faq-compact-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-compact-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-compact-card h4::before {
  content: 'Q.';
  color: #CA8A04;
  font-weight: 900;
}

.faq-compact-card p {
  font-size: 0.84rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Related Services Grid */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 50px;
}

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

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

.related-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.related-service-card:hover {
  transform: translateY(-3px);
  border-color: #FACC15;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.related-service-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.related-service-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.3;
}

.related-service-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #CA8A04;
  margin-top: auto;
}

