/* ========================================
   PG AUTO - PREMIUM MOBILE TIRE SERVICE
   One-page website (BG/EN) with Fire/Red theme
   ======================================== */

:root {
  /* Colors */
  --primary-dark: #070708;
  --primary-graphite: #121214;
  --primary-charcoal: #19191d;

  --accent-red: #ff2a2a;
  --accent-red-deep: #b1001e;
  --accent-orange: #ff5a00;
  --accent-ember: #ffb000;
  --accent-silver: #c0c0c0;
  --accent-gold: #ffd700;

  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #9a9aa0;

  --success: #00ff88;
  --warning: #ff5a00;
  --error: #ff0044;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #070708 0%, #121214 55%, #1f1f24 100%);
  --gradient-fire: linear-gradient(135deg, #ff2a2a 0%, #ff5a00 55%, #ffb000 100%);
  --gradient-fire-deep: linear-gradient(135deg, #b1001e 0%, #ff2a2a 45%, #ff5a00 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Orbitron", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Layout */
  --section-padding: 100px 0;
  --container-max-width: 1200px;
  --border-radius: 12px;
  --border-radius-large: 24px;

  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s ease;
  --transition-slow: 0.8s ease;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  background: var(--primary-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* Ambient edge glow + flame tint */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -30vh -20vw;
  pointer-events: none;
  z-index: -2;
  filter: blur(60px);
  opacity: 0.45;
}

body::before {
  background: radial-gradient(circle at 20% 10%, rgba(255, 42, 42, 0.65) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255, 90, 0, 0.55) 0%, transparent 60%),
    radial-gradient(circle at 50% 95%, rgba(255, 176, 0, 0.35) 0%, transparent 55%);
}

body::after {
  background: radial-gradient(circle at 5% 55%, rgba(177, 0, 30, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 95% 70%, rgba(255, 42, 42, 0.25) 0%, transparent 55%);
  opacity: 0.25;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-fire);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.5);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 42, 42, 0.2);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.25), 0 0 22px rgba(255, 90, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-phone {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-fast);
  box-shadow: 0 6px 26px rgba(255, 42, 42, 0.25);
}

.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 90, 0, 0.35);
}

.lang-toggle {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 42, 42, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  transition: var(--transition-fast);
}

.lang-btn[aria-pressed="true"] {
  background: rgba(255, 42, 42, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, 0.25), 0 0 16px rgba(255, 42, 42, 0.18);
  transform: translateY(-1px);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(255, 176, 0, 0.9);
  outline-offset: 2px;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
}

.animated-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 42, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 90, 0, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: gridMove 22s linear infinite;
  opacity: 0.9;
}

.fx-flames {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 10% 90%, rgba(255, 90, 0, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 85% 95%, rgba(255, 42, 42, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 50% 105%, rgba(255, 176, 0, 0.10) 0%, transparent 60%);
  filter: blur(28px);
  animation: flameDrift 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flameDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate3d(-1%, -1%, 0) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.65;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(54px, 54px);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 22px;
  line-height: 1.05;
}

.title-main {
  display: block;
  color: var(--white);
}

.title-highlight {
  display: block;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 28px rgba(255, 42, 42, 0.45);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(245, 245, 245, 0.9);
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  border: none;
  padding: 18px 34px;
  border-radius: var(--border-radius);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 10px 32px rgba(255, 42, 42, 0.28);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: transform var(--transition-smooth);
}

.cta-primary:hover::before {
  transform: translateX(120%);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px rgba(255, 90, 0, 0.36);
}

.cta-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 42, 42, 0.65);
  padding: 16px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-fast);
  background: rgba(255, 42, 42, 0.08);
}

.cta-secondary:hover {
  background: rgba(255, 90, 0, 0.2);
  border-color: rgba(255, 176, 0, 0.7);
  transform: translateY(-2px);
}

.coverage-info {
  font-size: 1.05rem;
  color: var(--accent-silver);
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  border-left: 4px solid rgba(255, 90, 0, 0.9);
}

.emergency-callout {
  margin-top: 26px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 0, 68, 0.12), rgba(255, 90, 0, 0.12));
  border: 2px solid rgba(255, 90, 0, 0.7);
  border-radius: var(--border-radius-large);
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.emergency-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 176, 0, 0.14), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 42, 42, 0.12), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.callout-icon {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 12px rgba(255, 90, 0, 0.65));
  z-index: 1;
}

.callout-content {
  z-index: 1;
}

.callout-content h3 {
  color: var(--warning);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.callout-content p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.callout-signature {
  color: rgba(255, 176, 0, 0.9);
}

.callout-signature strong {
  display: block;
  font-size: 1.15rem;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.12);
  border: 1px solid rgba(255, 90, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.08);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.main-tires-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 52px rgba(255, 42, 42, 0.22);
  transition: var(--transition-smooth);
  filter: brightness(1.06) contrast(1.18);
}

.main-tires-image:hover {
  transform: scale(1.05);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65), 0 0 72px rgba(255, 90, 0, 0.32);
}

.tire-animation {
  position: relative;
  width: 400px;
  height: 360px;
  opacity: 0.9;
}

.tire {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 8px solid rgba(255, 42, 42, 0.9);
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-graphite) 30%, var(--primary-dark) 70%);
  box-shadow: inset 0 0 20px rgba(255, 42, 42, 0.22), 0 0 40px rgba(255, 90, 0, 0.14);
}

.tire::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #b8b8b8, #f0f0f0);
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.55);
}

.tire:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tire:nth-child(2) {
  bottom: 40px;
  left: 70px;
}

.tire:nth-child(3) {
  bottom: 40px;
  right: 70px;
}

.rotating {
  animation: rotate 3s linear infinite;
}
.delay-1 {
  animation-delay: -1s;
}
.delay-2 {
  animation-delay: -2s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: var(--section-padding);
  background: var(--primary-graphite);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-fire);
  opacity: 0.28;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 42, 42, 0.2);
  border-radius: var(--border-radius-large);
  padding: 38px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.13), transparent);
  transition: var(--transition-slow);
}

.service-card:hover::before {
  left: 110%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 90, 0, 0.65);
  box-shadow: 0 20px 54px rgba(255, 42, 42, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  position: relative;
}

.tire-icon,
.balance-icon,
.emergency-icon,
.roadside-icon,
.seasonal-icon,
.welding-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(255, 42, 42, 0.18);
}

.tire-icon::before {
  content: "🛞";
}
.balance-icon::before {
  content: "⚖️";
}
.emergency-icon::before {
  content: "🚨";
}
.roadside-icon::before {
  content: "🛣️";
}
.seasonal-icon::before {
  content: "❄️";
}
.welding-icon::before {
  content: "🔧";
  font-size: 2.5rem;
}

.rotating-on-hover {
  transition: var(--transition-smooth);
}

.service-card:hover .rotating-on-hover {
  transform: rotate(360deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--white);
}

.service-card p {
  color: rgba(245, 245, 245, 0.9);
  margin-bottom: 22px;
  font-size: 1rem;
}

.service-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 42, 42, 0.7);
  color: rgba(255, 176, 0, 0.95);
  border-radius: var(--border-radius);
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  border-color: rgba(255, 176, 0, 0.8);
}

.service-btn.emergency {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  border-color: rgba(255, 90, 0, 0.9);
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  padding: var(--section-padding);
  background: var(--primary-dark);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story {
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255, 176, 0, 0.95);
  margin-bottom: 36px;
  padding: 26px;
  border-left: 4px solid rgba(255, 90, 0, 0.95);
  background: rgba(255, 42, 42, 0.06);
  border-radius: var(--border-radius);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 560px;
}

.stat-item {
  text-align: center;
  padding: 22px;
  background: var(--gradient-glass);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 42, 42, 0.18);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(245, 245, 245, 0.85);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tire-brands {
  margin-top: 36px;
  padding: 26px;
  background: var(--gradient-glass);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(255, 42, 42, 0.18);
  text-align: center;
}

.tire-brands h4 {
  color: rgba(255, 176, 0, 0.95);
  font-size: 1.2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.brand:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 24px rgba(255, 42, 42, 0.22);
}

.testimonial-carousel {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  padding: 26px;
  background: var(--gradient-glass);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(255, 42, 42, 0.18);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-author {
  color: rgba(255, 176, 0, 0.9);
  font-weight: 800;
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
  padding: var(--section-padding);
  background: var(--primary-graphite);
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--gradient-glass);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 42, 42, 0.18);
  transition: var(--transition-fast);
}

.contact-item:hover {
  border-color: rgba(255, 90, 0, 0.6);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-fire);
  border-radius: 50%;
  color: var(--primary-dark);
}

.contact-details h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.contact-details a {
  color: rgba(255, 176, 0, 0.95);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
  transition: var(--transition-fast);
}

.contact-details a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 90, 0, 0.35);
}

.map-container {
  background: var(--gradient-glass);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  border: 1px solid rgba(255, 42, 42, 0.18);
}

.map-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 176, 0, 0.95);
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  padding: 30px;
}

.map-placeholder:hover {
  color: var(--white);
  background: rgba(255, 42, 42, 0.08);
  transform: scale(1.02);
}

.live-tracking {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--success);
}

/* ========================================
   BLOG
   ======================================== */

.blog {
  padding: var(--section-padding);
  background: var(--primary-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.blog-card {
  background: var(--gradient-glass);
  border-radius: var(--border-radius-large);
  overflow: visible;
  border: 1px solid rgba(255, 42, 42, 0.18);
  transition: var(--transition-smooth);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 90, 0, 0.6);
  box-shadow: 0 20px 54px rgba(255, 42, 42, 0.10);
}

.blog-card.expanded {
  transform: scale(1.02) translateY(-5px);
  border-color: rgba(255, 176, 0, 0.7);
  box-shadow: 0 25px 70px rgba(255, 90, 0, 0.18);
  z-index: 10;
}

.blog-card h3 {
  padding: 22px 22px 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.blog-card p {
  padding: 0 22px 18px;
  color: rgba(245, 245, 245, 0.88);
}

.read-more {
  display: block;
  padding: 14px 22px;
  background: rgba(255, 42, 42, 0.85);
  color: var(--primary-dark);
  border: none;
  font-weight: 900;
  transition: var(--transition-fast);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}

.read-more:hover {
  background: rgba(255, 90, 0, 0.95);
  transform: scale(1.01);
}

.blog-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-14px);
}

.blog-dropdown.active {
  max-height: 650px;
  opacity: 1;
  transform: translateY(0);
}

.blog-content {
  background: linear-gradient(135deg, rgba(255, 42, 42, 0.12), rgba(255, 176, 0, 0.10));
  border: 1px solid rgba(255, 90, 0, 0.35);
  border-radius: 10px;
  margin: 0 22px 22px 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.blog-content h4 {
  color: rgba(255, 176, 0, 0.95);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.blog-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.blog-content li {
  color: rgba(245, 245, 245, 0.9);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.blog-content li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: rgba(255, 90, 0, 0.9);
  font-size: 0.8rem;
}

.blog-content strong {
  color: rgba(255, 176, 0, 0.95);
}

.blog-content p {
  background: rgba(255, 42, 42, 0.08);
  border-left: 3px solid rgba(255, 90, 0, 0.9);
  padding: 12px;
  border-radius: 6px;
  margin: 16px 0 0 0;
}

/* ========================================
   SEO CONTENT
   ======================================== */

.seo-content {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-graphite));
  border-top: 1px solid rgba(255, 42, 42, 0.18);
}

.seo-text {
  max-width: 1000px;
  margin: 0 auto;
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.85;
}

.seo-text h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 2rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-text h3 {
  color: rgba(255, 176, 0, 0.95);
  margin: 28px 0 18px 0;
  font-size: 1.35rem;
  border-left: 4px solid rgba(255, 90, 0, 0.9);
  padding-left: 14px;
}

.seo-text h4 {
  color: rgba(255, 176, 0, 0.95);
  margin: 18px 0 10px 0;
  font-size: 1.15rem;
}

.seo-text p {
  margin: 14px 0;
  font-size: 1.08rem;
}

.seo-text strong {
  color: rgba(255, 176, 0, 0.95);
  font-weight: 700;
}

.seo-text a {
  color: rgba(255, 176, 0, 0.95);
  text-decoration: none;
  font-weight: 900;
  transition: var(--transition-fast);
}

.seo-text a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 90, 0, 0.35);
}

.seo-services-list,
.coverage-areas {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.seo-services-list li,
.coverage-areas li {
  margin: 10px 0;
  padding: 10px 14px;
  background: rgba(255, 42, 42, 0.08);
  border-left: 3px solid rgba(255, 90, 0, 0.9);
  border-radius: 6px;
  transition: var(--transition-fast);
}

.seo-services-list li:hover,
.coverage-areas li:hover {
  background: rgba(255, 90, 0, 0.12);
  transform: translateX(10px);
}

.seo-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin: 26px 0;
}

.advantage-item {
  background: rgba(255, 42, 42, 0.08);
  border: 1px solid rgba(255, 90, 0, 0.25);
  border-radius: 10px;
  padding: 22px;
  transition: var(--transition-smooth);
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 176, 0, 0.55);
  box-shadow: 0 15px 44px rgba(255, 90, 0, 0.10);
}

.seo-keywords {
  margin-top: 34px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  border: 1px solid rgba(255, 42, 42, 0.16);
}

.seo-keywords p {
  margin: 0;
  text-align: center;
  opacity: 0.85;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--primary-graphite);
  border-top: 1px solid rgba(255, 42, 42, 0.22);
}

.footer-content {
  padding: 60px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.25));
}

.footer-brand p {
  color: rgba(245, 245, 245, 0.88);
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  color: rgba(255, 176, 0, 0.95);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer-links a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255, 176, 0, 0.95);
  transform: translateX(10px);
}

.footer-contact p {
  color: rgba(245, 245, 245, 0.88);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 42, 42, 0.16);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255, 176, 0, 0.95);
}

.company-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 42, 42, 0.16);
}

.company-info strong {
  color: rgba(255, 176, 0, 0.95);
  font-size: 1.08rem;
}

.service-provider {
  color: rgba(255, 176, 0, 0.95) !important;
  font-weight: 900;
  margin-top: 10px !important;
}

/* ========================================
   STICKY PHONE
   ======================================== */

.sticky-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

.sticky-phone a {
  width: 60px;
  height: 60px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-dark);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(255, 42, 42, 0.28);
  transition: var(--transition-fast);
}

.sticky-phone a:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 44px rgba(255, 90, 0, 0.36);
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 20, 0.98);
  border-top: 2px solid rgba(255, 42, 42, 0.6);
  padding: 18px;
  z-index: 1001;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-accept,
.btn-decline {
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-accept {
  background: var(--gradient-fire);
  color: var(--primary-dark);
}

.btn-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 42, 42, 0.55);
}

.btn-accept:hover,
.btn-decline:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 42, 42, 0.18);
}

/* ========================================
   POLICY DIALOGS
   ======================================== */

.policy-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.policy-dialog.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.dialog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.dialog-content {
  position: relative;
  background: rgba(18, 18, 20, 0.98);
  border: 2px solid rgba(255, 42, 42, 0.55);
  border-radius: var(--border-radius-large);
  max-width: 800px;
  max-height: 90vh;
  width: 92%;
  margin: 20px;
  box-shadow: 0 26px 70px rgba(255, 42, 42, 0.14);
  overflow: hidden;
}

.dialog-header {
  background: linear-gradient(135deg, rgba(7, 7, 8, 0.85), rgba(18, 18, 20, 0.95));
  padding: 22px;
  border-bottom: 1px solid rgba(255, 42, 42, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-header h2 {
  color: rgba(255, 176, 0, 0.95);
  margin: 0;
  font-size: 1.4rem;
}

.dialog-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 176, 0, 0.95);
  transform: rotate(90deg);
}

.dialog-body {
  padding: 26px;
  max-height: 60vh;
  overflow-y: auto;
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.65;
}

.dialog-body h3 {
  color: rgba(255, 176, 0, 0.95);
  margin-bottom: 22px;
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 42, 42, 0.18);
}

.dialog-body h4 {
  color: rgba(255, 176, 0, 0.95);
  margin: 20px 0 10px 0;
  font-size: 1.05rem;
}

.dialog-body ul {
  margin: 12px 0;
  padding-left: 20px;
}

.dialog-body li {
  margin-bottom: 8px;
}

.dialog-footer {
  background: rgba(7, 7, 8, 0.9);
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 42, 42, 0.22);
  display: flex;
  justify-content: center;
}

.dialog-footer .btn-primary {
  background: var(--gradient-fire);
  color: var(--primary-dark);
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.dialog-footer .btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 26px rgba(255, 90, 0, 0.22);
}

/* ========================================
   EFFECTS: floating tires + embers
   ======================================== */

.floating-tires {
  position: fixed;
  right: -90px;
  top: 22vh;
  width: 220px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  transform: rotate(-8deg);
  filter: blur(0px) drop-shadow(0 0 40px rgba(255, 42, 42, 0.12));
  animation: floatTires 7s ease-in-out infinite;
}

.floating-tires img {
  width: 100%;
  height: auto;
}

@keyframes floatTires {
  0% {
    transform: translateY(0) rotate(-8deg);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-20px) rotate(-6deg);
    opacity: 0.24;
  }
  100% {
    transform: translateY(0) rotate(-8deg);
    opacity: 0.16;
  }
}

.fx-embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 176, 0, 0.85);
  border-radius: 50%;
  filter: blur(0.2px);
  box-shadow: 0 0 16px rgba(255, 90, 0, 0.35);
  opacity: 0.0;
  animation: emberFloat 7s linear infinite;
}

@keyframes emberFloat {
  0% {
    transform: translateY(30vh) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  80% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-110vh) translateX(80px) scale(1.15);
    opacity: 0;
  }
}

/* Ember positions + delays */
.e1 {
  left: 8%;
  bottom: -10%;
  animation-delay: 0s;
  animation-duration: 6.2s;
}
.e2 {
  left: 18%;
  bottom: -12%;
  animation-delay: 1.2s;
  animation-duration: 7.5s;
}
.e3 {
  left: 30%;
  bottom: -18%;
  animation-delay: 2.1s;
  animation-duration: 8.2s;
}
.e4 {
  left: 42%;
  bottom: -12%;
  animation-delay: 0.8s;
  animation-duration: 7.9s;
}
.e5 {
  left: 55%;
  bottom: -16%;
  animation-delay: 1.9s;
  animation-duration: 6.9s;
}
.e6 {
  left: 64%;
  bottom: -18%;
  animation-delay: 2.8s;
  animation-duration: 8.6s;
}
.e7 {
  left: 72%;
  bottom: -12%;
  animation-delay: 0.4s;
  animation-duration: 7.2s;
}
.e8 {
  left: 82%;
  bottom: -16%;
  animation-delay: 2.4s;
  animation-duration: 8.0s;
}
.e9 {
  left: 92%;
  bottom: -18%;
  animation-delay: 1.1s;
  animation-duration: 7.1s;
}
.e10 {
  left: 12%;
  bottom: -18%;
  animation-delay: 3.1s;
  animation-duration: 8.8s;
}
.e11 {
  left: 48%;
  bottom: -22%;
  animation-delay: 3.6s;
  animation-duration: 9.2s;
}
.e12 {
  left: 88%;
  bottom: -22%;
  animation-delay: 3.9s;
  animation-duration: 9.0s;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 980px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-phone {
    padding: 10px 14px;
  }
}

@media (max-width: 860px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-container {
    height: 70px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    display: none; /* keep it simple like original mobile layout */
  }

  .tire-animation {
    display: none;
  }

  .floating-tires {
    right: -120px;
    width: 210px;
    opacity: 0.14;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .nav-phone {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .sticky-phone {
    bottom: 18px;
    right: 16px;
  }
  .sticky-phone a {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

