/* =============================================
   YAMAHA SAN JOSÉ DEL GUAVIARE — DESIGN SYSTEM
   ============================================= */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Yamaha Brand Colors */
  --yamaha-blue: #0046ad;
  --yamaha-blue-dark: #003080;
  --yamaha-blue-light: #e8f0fe;
  --yamaha-red: #e60012;

  /* Accent & Neutral */
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --gold: #f5a623;
  --success: #22c55e;

  /* Neutrals */
  --bg: #f7f8fa;
  --bg-white: #ffffff;
  --bg-dark: #0a1628;
  --bg-dark-2: #111d33;
  --text: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--yamaha-blue);
  transition: var(--transition);
}

a:hover {
  color: var(--yamaha-red);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.header-topbar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact {
  display: flex;
  gap: var(--space-md);
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.topbar-contact a:hover {
  color: var(--accent);
}

.topbar-hours {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.main-nav {
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--yamaha-blue);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yamaha-blue);
  background: var(--yamaha-blue-light);
}

.nav-cta a {
  background: var(--yamaha-red) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 8px 20px !important;
}

.nav-cta a:hover {
  background: #c4000f !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--yamaha-red);
  color: #fff;
  border-color: var(--yamaha-red);
}

.btn-primary:hover {
  background: #c4000f;
  border-color: #c4000f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 18, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--yamaha-blue);
  border-color: var(--yamaha-blue);
}

.btn-outline:hover {
  background: var(--yamaha-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* --- HERO --- */
.hero,
.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #001a4d 40%, var(--yamaha-blue) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(0, 70, 173, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(0, 180, 216, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 90%, rgba(230, 0, 18, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.page-hero {
  min-height: 350px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 70, 173, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
}

.highlight {
  background: linear-gradient(135deg, var(--gold), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  max-width: 640px;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-sm);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(245, 166, 35, 0.3);
  }

  50% {
    text-shadow: 0 0 25px rgba(245, 166, 35, 0.7);
  }
}

/* --- SECTIONS --- */
.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  background: var(--yamaha-blue-light);
  color: var(--yamaha-blue);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--yamaha-red), var(--yamaha-blue));
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- IVA SECTION --- */
.section-iva {
  background: var(--bg-white);
}

.iva-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.iva-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.iva-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yamaha-blue);
}

.iva-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.iva-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.iva-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* --- CATALOG --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.moto-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.moto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
  pointer-events: none;
}

.moto-card:hover::after {
  border-color: var(--yamaha-blue);
}

.moto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 70, 173, 0.15);
}

.moto-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yamaha-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.moto-card-img {
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.moto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 70, 173, 0.15));
}

.moto-card:hover .moto-card-img img {
  transform: scale(1.08);
}

.moto-placeholder {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yamaha-blue);
  opacity: 0.6;
  display: none;
  /* Hidden by default; shown as fallback when img fails */
}

/* Fallback: show placeholder when image loads but display:none class is removed by JS onerror */
.moto-card-img:not(:has(img[src])) .moto-placeholder {
  display: flex;
}

.moto-card-body {
  padding: var(--space-md);
}

.moto-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.moto-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.moto-specs {
  list-style: none;
  margin-bottom: var(--space-md);
}

.moto-specs li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 3px 0;
  border-bottom: 1px dashed var(--border);
}

.moto-specs li:last-child {
  border-bottom: none;
}

.moto-card-footer {
  padding-top: var(--space-xs);
}

.catalog-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--yamaha-blue-light);
  border-radius: var(--radius-md);
}

.catalog-cta p {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

/* --- SERVICES --- */
.section-services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- TESTIMONIALS --- */
.section-testimonials {
  background: var(--bg-dark);
  color: #fff;
}

.section-testimonials .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.section-testimonials .section-header h2 {
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.testimonial-stars {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
}

/* --- BLOG PREVIEW --- */
.section-blog-preview {
  background: var(--bg-white);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.blog-preview-card {
  display: block;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition: var(--transition);
  color: var(--text);
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--yamaha-red);
  color: var(--text);
}

.blog-preview-tag {
  display: inline-block;
  background: var(--yamaha-blue-light);
  color: var(--yamaha-blue);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-preview-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.blog-preview-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.blog-preview-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* --- CONTACT --- */
.section-contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--yamaha-blue);
}

.contact-cta-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 2px solid var(--yamaha-blue);
  box-shadow: var(--shadow-lg);
}

.contact-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.contact-cta-box p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* --- CTA FINAL --- */
.section-cta-final {
  background: linear-gradient(135deg, var(--yamaha-blue) 0%, var(--yamaha-blue-dark) 100%);
  color: #fff;
  padding: var(--space-2xl) 0;
}

.section-cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.section-cta-final p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-2xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col ul li {
  font-size: 0.85rem;
  padding: 3px 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}



/* --- ABOUT PAGE --- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.about-text .section-tag {
  display: block;
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yamaha-blue);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yamaha-blue);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  right: 20px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Services List (Nosotros page) */
.services-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-list-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yamaha-blue);
}

.service-list-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.service-list-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-list-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* --- BLOG PAGE --- */
.section-blog {
  background: var(--bg-white);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  scroll-margin-top: 100px;
}

.blog-article-header {
  margin-bottom: var(--space-lg);
}

.blog-tag {
  display: inline-block;
  background: var(--yamaha-blue);
  color: #fff;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-article-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.blog-meta {
  color: var(--text-light);
  font-size: 0.85rem;
}

.blog-article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.blog-article-body p {
  margin-bottom: var(--space-sm);
}

.blog-article-body ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.blog-article-body ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.blog-article-body blockquote {
  background: var(--yamaha-blue-light);
  border-left: 4px solid var(--yamaha-blue);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--text);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.9rem;
}

.blog-table th,
.blog-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.blog-table th {
  background: var(--yamaha-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}

.blog-table tr:hover {
  background: var(--yamaha-blue-light);
}

.blog-cta {
  background: linear-gradient(135deg, var(--yamaha-blue-light), #f0f6ff);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-lg);
  border: 1px solid var(--border);
}

.blog-cta p {
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text);
}

.blog-divider {
  border: none;
  border-top: 2px solid var(--border);
  max-width: 800px;
  margin: var(--space-xl) auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .topbar-hours {
    display: none;
  }

  .hero-content {
    padding: var(--space-xl) 0;
  }

  .hero-trust {
    gap: var(--space-md);
  }

  .trust-number {
    font-size: 1.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .moto-card-img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   NEW SECTIONS — SAVINGS, FAQ, PRICE TAG
   ============================================= */

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease-out both;
}

/* Savings table */
.savings-table-wrap {
  margin-top: var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.savings-table-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.savings-table-container {
  overflow-x: auto;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.savings-table th,
.savings-table td {
  padding: 12px 16px;
  text-align: left;
}

.savings-table th {
  background: var(--yamaha-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}

.savings-table tr:nth-child(even) {
  background: var(--bg);
}

.savings-table tr:hover {
  background: var(--yamaha-blue-light);
}

.saving-highlight {
  color: var(--success);
  font-weight: 700;
  font-size: 0.95rem;
}

.savings-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* Moto price tag */
.moto-price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

/* btn-link (inline text link) */
.btn-link {
  font-size: 0.82rem;
  color: var(--yamaha-blue);
  font-weight: 600;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--yamaha-red);
  text-decoration: underline;
}

/* FAQ Section */
.section-faq {
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--yamaha-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--yamaha-blue);
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

details[open] .faq-question {
  color: var(--yamaha-blue);
}

details[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--yamaha-blue);
  background: var(--yamaha-blue-light);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  animation: fadeInUp 0.3s ease-out both;
}

/* Contact CTA Box */
.contact-cta-box {
  background: linear-gradient(135deg, var(--yamaha-blue-dark) 0%, var(--yamaha-blue) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  justify-content: center;
}

.contact-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.contact-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Blog preview CTA */
.blog-preview-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Section no bg white */
.section-faq,
.section-blog-preview {
  background: var(--bg);
}

.section-contact {
  background: var(--bg-white);
}

/* ===== FONT AWESOME ICON SIZING ===== */
/* Service card icons */
.service-icon i,
.service-list-icon i {
  font-size: 2rem;
  color: var(--yamaha-blue);
}

/* IVA benefit card icons */
.iva-icon i {
  font-size: 2.5rem;
  color: var(--yamaha-blue);
}

/* Contact section icons */
.contact-icon i {
  font-size: 1.5rem;
  color: var(--yamaha-blue);
}

/* Topbar inline icons */
.topbar-contact i,
.topbar-hours i {
  font-size: 0.85rem;
  margin-right: 5px;
  opacity: 0.9;
}

/* Hero badge icon */
.hero-badge i {
  font-size: 0.75em;
  margin-right: 4px;
}

/* Moto card badge icon */
.moto-card-badge i {
  font-size: 0.75em;
}

/* Floating WhatsApp button */
.whatsapp-float i {
  font-size: 1.8rem;
  line-height: 1;
}

/* CTA buttons */
.btn i {
  margin-right: 6px;
}

/* ============================================================
   SPECIAL EFFECTS — DYNAMIC SITE ANIMATIONS
   ============================================================ */

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Sticky header scrolled state ──────────────────────────── */
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ─── Button Ripple ─────────────────────────────────────────── */
@keyframes ripple-anim {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ─── 3D Card Tilt ──────────────────────────────────────────── */
.moto-card,
.iva-card,
.service-card {
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.moto-card:hover,
.iva-card:hover,
.service-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* ─── WhatsApp Float Pulse ──────────────────────────────────── */
@keyframes wa-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.whatsapp-float.wa-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

/* ─── Section Tag Shimmer ───────────────────────────────────── */
@keyframes shimmer-slide {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-tag {
  background: linear-gradient(90deg,
      var(--yamaha-blue) 20%,
      #60a8ff 50%,
      var(--yamaha-blue) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-slide 3.5s linear infinite;
}

/* ─── Hero particle canvas z-index fix ─────────────────────── */
.hero .hero-overlay,
.hero .hero-content {
  position: relative;
  z-index: 2;
}

/* ─── Moto card image zoom on hover ────────────────────────── */
.moto-card:hover .moto-card-img img {
  transform: scale(1.07);
}

/* ─── Counter display ───────────────────────────────────────── */
[data-count] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ─── Page load fade-in ─────────────────────────────────────── */
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: page-in 0.5s ease forwards;
}

/* ─── Hero badge entrance ───────────────────────────────────── */
@keyframes badge-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-badge {
  animation: badge-pop 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ─── Nav CTA button glow on hover ─────────────────────────── */
.nav-cta a {
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.nav-cta a:hover {
  box-shadow: 0 0 18px rgba(0, 82, 204, 0.45);
  transform: translateY(-1px);
}

/* ─── Service icon spin on hover ────────────────────────────── */
.service-card:hover .service-icon i {
  animation: icon-spin 0.5s ease;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.25);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* ============================================================
   BLOG GRID LAYOUT & SEO STRUCTURE
   ============================================================ */

/* Blog Grid Container */
.section-blog .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Blog Article Card */
.blog-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 0;
  /* Content padding moved inside */
  margin-bottom: 0;
  /* Override default */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.blog-article-header {
  padding: 1.5rem 1.5rem 1rem;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yamaha-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: rgba(0, 82, 204, 0.08);
  /* Light blue bg */
  padding: 4px 8px;
  border-radius: 4px;
}

.blog-article h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Card Body (Truncated Preview) */
.blog-article-body {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  max-height: 180px;
  /* Limit height for grid preview */
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

/* Gradient Fade for Truncated Text */
.blog-article-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Expanded State */
.blog-article.expanded .blog-article-body {
  max-height: 2000px;
  /* Large enough for full content */
}

.blog-article.expanded .blog-article-body::after {
  opacity: 0;
}

/* Divider removal in grid */
.blog-divider {
  display: none;
}

/* Read More Button */
.blog-read-more {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #f8f9fa;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--yamaha-blue);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-main);
}

.blog-read-more:hover {
  background: #eff4ff;
}

.blog-read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.blog-article.expanded .blog-read-more i {
  transform: rotate(180deg);
}

/* CTA inside blog card */
.blog-cta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* TABLE STYLES IN BLOG */
.blog-table {
  width: 100%;
  font-size: 0.85rem;
  margin: 1rem 0;
  border-collapse: collapse;
}

.blog-table th,
.blog-table td {
  padding: 8px;
  border: 1px solid #eee;
}


/* ============================================================
   SINGLE BLOG POST OVERRIDES
   ============================================================ */
.blog-single-article .blog-article-body {
  max-height: none !important;
  overflow: visible !important;
  padding-bottom: 2rem;
}

.blog-single-article .blog-article-body::after {
  display: none !important;
}

.blog-single-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.blog-single-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}