/* ═══════════════════════════════════════════════════
   المسارات العربية للنظافة — CSS الرئيسي
   اللون الأساسي: #0D47A1 (أزرق غامق) + #4FC3F7 (أزرق فاتح)
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --brand-blue:   #0D47A1;
  --brand-light:  #4FC3F7;
  --brand-green:  #4CAF50;
  --brand-wa:     #25D366;
  --dark:         #0f172a;
  --gray-900:     #1e293b;
  --gray-700:     #374151;
  --gray-600:     #4b5563;
  --gray-500:     #6b7280;
  --gray-400:     #9ca3af;
  --gray-300:     #d1d5db;
  --gray-200:     #e5e7eb;
  --gray-100:     #f3f4f6;
  --gray-50:      #f9fafb;
  --white:        #ffffff;
  --radius:       0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;
  --shadow:       0 4px 20px rgba(13,71,161,.10);
  --shadow-lg:    0 8px 40px rgba(13,71,161,.18);
  --nav-h:        80px;
  --transition:   0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,71,161,.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(13,71,161,.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-img-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name-main { font-size: 1rem; font-weight: 800; color: var(--brand-blue); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--gray-500); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(13,71,161,.08);
  color: var(--brand-blue);
}

/* Nav End */
.nav-end { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700; color: var(--gray-700);
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.5rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.nav-cta {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--brand-blue);
  color: white;
  padding: 0.55rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: #0a3580; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,71,161,.35); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  margin-right: auto;
}
.hb { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ══════════════════════════════
   SIDEBAR (Mobile)
══════════════════════════════ */
.sb-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.sb-overlay.open { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: white; z-index: 1100;
  transition: right .35s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
}
.sidebar.open { right: 0; }

.sb-close {
  position: absolute; top: 1rem; left: 1rem;
  width: 36px; height: 36px;
  background: var(--gray-100); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}

.sb-head {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  padding: 2rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-align: center;
}
.sb-logo-wrap {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sb-logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; }
.sb-tagline { color: white; font-weight: 800; font-size: 1rem; }
.sb-sub { color: rgba(255,255,255,.8); font-size: .8rem; }

.sb-nav { flex: 1; padding: 0.75rem 0; }
.sb-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--gray-700);
  border-right: 3px solid transparent;
  transition: all var(--transition);
}
.sb-link svg { width: 20px; height: 20px; color: var(--gray-400); }
.sb-link:hover, .sb-link.active {
  background: rgba(13,71,161,.06);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.sb-link:hover svg, .sb-link.active svg { color: var(--brand-blue); }

.sb-foot {
  padding: 1rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: .5rem;
  border-top: 1px solid var(--gray-200);
}
.sb-cta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--brand-blue); color: white;
  padding: .75rem 1rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
}
.sb-phone {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--gray-100); color: var(--dark);
  padding: .65rem 1rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,71,161,.85) 0%, rgba(79,195,247,.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content h1 span { color: #7dd3fc; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.75rem;
}
.hero-features {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-bottom: 2rem;
}
.hero-feature {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: white;
  font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ── Quick Service Bar ── */
.quick-service-bar {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}
.quick-service-form {
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center;
}
.quick-service-form select,
.quick-service-form input[type="date"] {
  flex: 1 1 160px;
  padding: .6rem .9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: .9rem;
  background: var(--gray-50);
  color: var(--dark);
}
.quick-service-form select:focus,
.quick-service-form input:focus {
  outline: none; border-color: var(--brand-blue);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator-inner {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 13px;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: .4rem;
}
.scroll-indicator-dot {
  width: 5px; height: 8px;
  background: white; border-radius: 3px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 80%{transform:translateY(12px);opacity:0} 100%{transform:translateY(0);opacity:0} }

/* ══════════════════════════════
   STATS SECTION
══════════════════════════════ */
.section-dark {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1565c0 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem 0; }
.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-50); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-header h2 span { color: var(--brand-blue); }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-light));
  border-radius: 2px;
  margin: 0.75rem auto;
}
.subtitle { font-size: 1rem; color: var(--gray-500); max-width: 550px; margin: 0 auto; }

/* ══════════════════════════════
   SERVICES GRID
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { position: relative; height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,.85), transparent);
  display: flex; align-items: flex-end; padding: 1rem;
}
.service-card-overlay h3 { color: white; font-size: 1.1rem; font-weight: 700; }
.service-card-body { padding: 1.25rem; }
.service-card-body p { font-size: .92rem; color: var(--gray-600); margin-bottom: 1rem; }
.features-list { margin-bottom: 1rem; }
.features-list li { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--gray-600); margin-bottom: .3rem; }
.features-list li svg { color: var(--brand-green); width: 14px; height: 14px; flex-shrink: 0; }
.read-more { color: var(--brand-blue); font-weight: 700; font-size: .9rem; transition: color var(--transition); }
.read-more:hover { color: var(--brand-light); }

/* ══════════════════════════════
   PRODUCTS GRID
══════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; height: 200px; overflow: hidden; background: var(--gray-100); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: .75rem; right: .75rem;
  background: var(--brand-blue); color: white;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 1rem;
}
.product-content { padding: 1rem; }
.product-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--dark); }
.product-content p { font-size: .85rem; color: var(--gray-500); margin-bottom: .75rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--brand-green); }
.product-btn {
  width: 100%; padding: .55rem;
  background: var(--brand-blue); color: white;
  border-radius: var(--radius); text-align: center;
  font-size: .85rem; font-weight: 700;
  transition: background var(--transition);
}
.product-card:hover .product-btn { background: #0a3580; }

/* ══════════════════════════════
   PACKAGES
══════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.package-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  color: white;
}
.package-card:hover { transform: translateY(-5px); border-color: var(--brand-light); }
.package-card.popular {
  background: rgba(255,255,255,.15);
  border-color: var(--brand-light);
  box-shadow: 0 0 0 1px var(--brand-light);
}
.package-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand-light); color: var(--brand-blue);
  font-size: .72rem; font-weight: 800;
  padding: .2rem .9rem; border-radius: 1rem; white-space: nowrap;
}
.package-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.package-card .price { font-size: 2rem; font-weight: 900; color: white; }
.package-card .price span { font-size: 1rem; font-weight: 600; opacity: .8; }
.package-card .price-note { font-size: .8rem; opacity: .7; margin: .4rem 0 1.25rem; }
.package-card .items { text-align: right; margin-bottom: 1.5rem; }
.package-card .items li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; margin-bottom: .5rem; opacity: .9; }
.package-card .items li svg { width: 16px; height: 16px; color: #86efac; flex-shrink: 0; }

/* ══════════════════════════════
   WHY US GRID
══════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.why-item:hover { transform: translateY(-5px); border-color: var(--brand-light); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand-blue); margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: var(--gray-500); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1565c0 100%);
  padding: 5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { display: flex; gap: .2rem; margin-bottom: .75rem; }
.star { color: #fbbf24; font-size: 1.1rem; }
.testimonial-text { color: rgba(255,255,255,.9); font-size: .95rem; margin-bottom: 1.25rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: white;
  overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author .name { font-weight: 700; color: white; font-size: .95rem; }
.testimonial-author .role { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: right;
  padding: 1.1rem 1.25rem;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1rem; font-weight: 700; color: var(--dark);
  cursor: pointer;
}
.faq-question:hover { color: var(--brand-blue); }
.faq-question.open { color: var(--brand-blue); }
.faq-icon { font-size: 1.3rem; color: var(--brand-blue); flex-shrink: 0; transition: transform .3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 1.25rem 1.25rem; color: var(--gray-600); font-size: .95rem; line-height: 1.8; }

/* ══════════════════════════════
   BLOG
══════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { position: relative; height: 200px; overflow: hidden; background: var(--gray-100); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
  position: absolute; top: .75rem; right: .75rem;
  background: var(--brand-blue); color: white;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 1rem;
}
.blog-content { padding: 1.25rem; }
.blog-meta { display: flex; gap: .75rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .5rem; flex-wrap: wrap; }
.blog-content h2, .blog-content h3 {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: .5rem; line-height: 1.5;
}
.blog-content p { font-size: .88rem; color: var(--gray-500); margin-bottom: .75rem; }
.blog-link { color: var(--brand-blue); font-weight: 700; font-size: .88rem; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  padding: 1.25rem; overflow: hidden;
}
.sidebar-widget h3 {
  font-size: 1rem; font-weight: 800; color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--brand-blue);
}
.sidebar-post {
  display: flex; gap: .75rem; align-items: center;
  margin-bottom: .75rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-post:last-child { border: none; margin: 0; padding: 0; }
.sidebar-post img { width: 56px; height: 44px; object-fit: cover; border-radius: .4rem; flex-shrink: 0; }
.sidebar-post-info h4 { font-size: .85rem; font-weight: 700; color: var(--dark); line-height: 1.4; }
.sidebar-post-info span { font-size: .75rem; color: var(--gray-400); }
.post-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--brand-blue);
  padding: .25rem .6rem;
  border-radius: 1rem;
  font-size: .78rem;
  font-weight: 600;
}

/* Post Detail */
.post-detail h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: .75rem; }
.post-meta { display: flex; gap: .75rem; font-size: .85rem; color: var(--gray-400); margin-bottom: 1.5rem; flex-wrap: wrap; }
.post-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.75rem; }
.post-featured-image img { width: 100%; }
.post-body { line-height: 1.9; color: var(--gray-700); margin-bottom: 2rem; }
.post-body h2, .post-body h3 { color: var(--dark); font-weight: 700; margin: 1.5rem 0 .75rem; }
.post-body p { margin-bottom: 1rem; }
.post-body ul { margin: 1rem 0 1rem 1.5rem; }
.post-body li { margin-bottom: .4rem; }
.post-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.share-buttons {
  display: flex; align-items: center; gap: .5rem;
  padding: 1rem; background: var(--gray-50);
  border-radius: var(--radius); flex-wrap: wrap;
}
.share-btn {
  padding: .35rem .9rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700;
  border: 1.5px solid var(--gray-200);
  background: white; color: var(--dark);
  cursor: pointer;
}
.share-btn.twitter { background: #000; color: white; border-color: #000; }
.share-btn.whatsapp { background: #25D366; color: white; border-color: #25D366; }

/* ══════════════════════════════
   PROJECTS
══════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.project-img { position: relative; height: 240px; overflow: hidden; background: var(--gray-100); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,.85), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; opacity: 0; transition: opacity .3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-category { font-size: .78rem; font-weight: 700; color: #7dd3fc; margin-bottom: .3rem; }
.project-title { color: white; font-weight: 700; font-size: 1.05rem; }

/* ══════════════════════════════
   FILTER BAR
══════════════════════════════ */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: .45rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 2rem;
  font-size: .88rem; font-weight: 600;
  color: var(--gray-600); background: white;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brand-blue); color: white; border-color: var(--brand-blue);
}

/* ══════════════════════════════
   TIRE FINDER
══════════════════════════════ */
.tire-finder {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(13,71,161,.1);
  margin-bottom: 2.5rem;
}
.tire-finder h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--dark);
  margin-bottom: 1.25rem; text-align: center;
}
.tire-finder-form { display: flex; flex-direction: column; gap: 1rem; }
.tire-finder-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .75rem;
}
.tire-finder-fields select,
.tire-finder-fields input {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: .9rem;
  background: var(--gray-50);
  color: var(--dark);
}
.tire-finder-fields select:focus,
.tire-finder-fields input:focus { outline: none; border-color: var(--brand-blue); }
.tire-finder-actions {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.tire-finder-actions select {
  flex: 1;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: .9rem; background: var(--gray-50);
}

/* ══════════════════════════════
   PAGE HEADER
══════════════════════════════ */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--brand-blue), #1565c0);
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
  position: relative; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: white; margin-bottom: .5rem;
}
.page-header p {
  position: relative; color: rgba(255,255,255,.85); font-size: 1.05rem;
}
.breadcrumb {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .75rem; font-size: .85rem; color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { opacity: .6; }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  padding: 5rem 0; text-align: center;
}
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: white; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--brand-blue); color: white;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: #0a3580; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,71,161,.35); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: rgba(255,255,255,.15); color: white;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: transparent; color: var(--brand-blue);
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--brand-blue);
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--brand-blue); color: white; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: white; color: var(--brand-blue);
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  border: none;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

.btn-black {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--dark); color: white;
  padding: .6rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-black:hover { background: #333; }

/* ══════════════════════════════
   EMPTY STATE
══════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-500);
}
.empty-state h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; color: var(--gray-700); }
.empty-state a { color: var(--brand-blue); font-weight: 600; }

/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.pagination { display: flex; justify-content: center; margin-top: 2.5rem; }
.pagination nav { display: flex; gap: .35rem; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: white; color: var(--gray-700);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.pagination span[aria-current] { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }

/* ══════════════════════════════
   FLOATING BUTTONS
══════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  color: white; font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.float-btn.whatsapp { background: var(--brand-wa); animation: floatBounce 2.5s infinite; }
.float-btn.phone-call { background: var(--brand-green); }
.float-btn.scroll-top { background: var(--brand-blue); }

@keyframes floatBounce {
  0%,80%,100% { transform: translateY(0); }
  40%          { transform: translateY(-8px); }
  60%          { transform: translateY(-4px); }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--brand-blue); color: white; }
.footer-content { padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer-about p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-logo-img-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer-logo-img { width: 100%; height: 100%; object-fit: contain; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { color: white; font-weight: 800; font-size: 1rem; line-height: 1.2; }
.logo-sub { color: rgba(255,255,255,.7); font-size: .75rem; }

.footer h4 { font-size: 1rem; font-weight: 800; margin-bottom: 1.25rem; padding-bottom: .5rem; border-bottom: 2px solid rgba(255,255,255,.15); }
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-links a {
  display: flex; align-items: center; gap: .4rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand-light); }
.footer-links a svg { color: rgba(255,255,255,.4); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: .75rem; font-size: .9rem; color: rgba(255,255,255,.8);
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: var(--brand-light); }
.footer-contact-item a { color: rgba(255,255,255,.85); }
.footer-contact-item a:hover { color: white; }

.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all var(--transition);
}
.social-link:hover { background: var(--brand-light); border-color: var(--brand-light); }

/* Newsletter */
.newsletter { margin-top: 3rem; padding: 2rem; background: rgba(255,255,255,.06); border-radius: var(--radius-lg); }
.newsletter-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.newsletter-text { flex: 1; }
.newsletter-text h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: .3rem; }
.newsletter-text p { font-size: .88rem; color: rgba(255,255,255,.75); }
.newsletter-form { display: flex; gap: .5rem; flex: 1; min-width: 260px; }
.newsletter-input {
  flex: 1; padding: .65rem 1rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1); color: white;
  font-family: inherit; font-size: .9rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { outline: none; border-color: var(--brand-light); }
.newsletter-btn {
  display: flex; align-items: center; gap: .4rem;
  background: var(--brand-light); color: var(--brand-blue);
  padding: .65rem 1.25rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem; border: none; cursor: pointer;
  transition: all var(--transition);
}
.newsletter-btn:hover { background: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-bottom-links a:hover { color: white; }

/* ══════════════════════════════
   TOAST
══════════════════════════════ */
.toast-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.toast-overlay.show { opacity: 1; pointer-events: all; }
.toast-box {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; text-align: center;
  max-width: 360px; width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: scale(.9); transition: transform .3s;
}
.toast-overlay.show .toast-box { transform: scale(1); }
.toast-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.toast-icon.success { background: #dcfce7; color: #16a34a; }
.toast-icon.error { background: #fee2e2; color: #dc2626; }
.toast-box h3 { font-weight: 800; font-size: 1.15rem; margin-bottom: .4rem; color: var(--dark); }
.toast-box p { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.25rem; }
.toast-close {
  background: var(--brand-blue); color: white;
  padding: .6rem 2rem; border-radius: var(--radius);
  border: none; font-weight: 700; cursor: pointer;
  font-family: inherit; font-size: .9rem;
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateY(-3px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; flex-shrink: 0;
}
.contact-details h3 { font-weight: 700; color: var(--brand-blue); margin-bottom: .25rem; }
.contact-details p, .contact-details a { font-size: .9rem; color: var(--gray-600); }
.contact-details a:hover { color: var(--brand-blue); }

.booking-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(13,71,161,.1);
}
.booking-form-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; color: var(--brand-blue); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: .95rem;
  color: var(--dark); background: var(--gray-50);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand-blue); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  width: 100%; padding: .95rem;
  background: linear-gradient(135deg, var(--brand-green), #45a049);
  color: white; border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(76,175,80,.35); }

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.area-card {
  background: white; border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 2px solid rgba(13,71,161,.1);
  font-weight: 600; color: var(--dark);
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-3px); }
.area-card .area-icon { font-size: 1.5rem; margin-bottom: .5rem; }

/* Quick Actions */
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.quick-action-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem; border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition);
}
.call-btn { background: var(--brand-blue); color: white; }
.call-btn:hover { background: #0a3580; }
.whatsapp-btn { background: var(--brand-wa); color: white; }
.whatsapp-btn:hover { background: #1ebe57; }

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-image-box {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-blue));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center; color: white;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-image-icon { font-size: 5rem; margin-bottom: 1rem; }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 1rem; }
.about-text p { font-size: 1rem; color: var(--gray-600); line-height: 1.9; margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow); border: 2px solid var(--gray-100);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--brand-light); }
.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 2rem;
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-blue); margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), #45a049);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.benefit-content h4 { font-size: 1rem; font-weight: 700; color: var(--brand-blue); margin-bottom: .3rem; }
.benefit-content p { font-size: .88rem; color: var(--gray-500); line-height: 1.7; }

/* VM Cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(13,71,161,.08);
}
.vm-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.8rem;
}
.vm-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 1rem; }
.vm-card p { color: var(--gray-600); line-height: 1.9; font-size: .95rem; }

/* ══════════════════════════════
   PRICING PAGE
══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}
.pricing-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow);
  border: 2px solid rgba(13,71,161,.1);
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); border-color: var(--brand-blue); }
.pricing-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--brand-blue); text-align: center; margin-bottom: 1.25rem; }
.price-tag { text-align: center; margin-bottom: 1.5rem; }
.price-tag .price { font-size: 1.9rem; color: var(--brand-green); font-weight: 900; }
.price-tag .currency { font-size: .85rem; color: var(--gray-500); margin-top: .2rem; }
.pricing-card ul { margin-bottom: 1.5rem; }
.pricing-card li {
  padding: .6rem 0; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--gray-700);
}
.pricing-card li:last-child { border: none; }
.checkmark { color: var(--brand-green); flex-shrink: 0; font-weight: 700; }

/* ══════════════════════════════
   SERVICES PAGE
══════════════════════════════ */
.service-category { margin-bottom: 3.5rem; }
.category-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(13,71,161,.1);
}
.category-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
}
.category-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); }
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.service-item {
  background: white; border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 2px solid rgba(13,71,161,.08);
  transition: all var(--transition);
}
.service-item:hover { border-color: var(--brand-blue); transform: translateY(-3px); }
.service-item h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.service-item .price { color: var(--brand-green); font-weight: 700; font-size: .9rem; }

/* ══════════════════════════════
   BRANCHES PAGE
══════════════════════════════ */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.branch-card {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid rgba(13,71,161,.08);
  transition: all var(--transition);
}
.branch-card:hover { transform: translateY(-4px); border-color: var(--brand-blue); }
.branch-header {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  padding: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.branch-header h3 { color: white; font-weight: 800; font-size: 1.1rem; }
.branch-header .main-badge {
  background: rgba(255,255,255,.2); color: white;
  font-size: .7rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 1rem;
}
.branch-body { padding: 1.5rem; }
.branch-info { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: .9rem; color: var(--gray-600); }
.branch-info svg { width: 18px; height: 18px; color: var(--brand-blue); flex-shrink: 0; margin-top: .1rem; }
.branch-actions { display: flex; gap: .5rem; padding: 0 1.5rem 1.5rem; flex-wrap: wrap; }

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-content-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .product-detail-grid { grid-template-columns: 1fr !important; }
  .newsletter-inner { flex-direction: column; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .tire-finder-fields { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .services-row { grid-template-columns: 1fr; }
}
