/* ============================================================
   CarServ Electronic - Main Stylesheet
   ============================================================ */

:root {
  --red: #e82227;
  --red-dark: #c41a1f;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --gray-bg: #f2f2f2;
  --gray-bg-2: #f8f8f8;
  --gray-text: #888888;
  --gray-text-2: #555555;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --radius: 4px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin: 0 0 1rem; }
p { margin: 0 0 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; outline: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid #333;
}
.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-bar a { color: #ccc; font-size: 12.5px; }
.top-bar a:hover { color: #fff; }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item i { color: var(--red); font-size: 12px; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}
/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .site-logo img { height: 49px; max-width: 227px; }
}

/* Nav Menu */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.main-nav a.active { border-bottom: 2px solid var(--red); }

/* Search */
.search-form {
  display: flex;
  align-items: center;
  position: relative;
}
.search-form input {
  padding: 7px 36px 7px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  outline: none;
  width: 160px;
  transition: var(--transition);
  font-family: var(--font);
  background: #f9f9f9;
}
.search-form input:focus {
  border-color: var(--red);
  width: 200px;
  background: #fff;
}
.search-form button {
  position: absolute;
  right: 10px;
  background: none;
  color: var(--gray-text);
  font-size: 13px;
  padding: 0;
}
.search-form button:hover { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 20px 16px;
  flex-direction: column;
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--red); }
.mobile-nav.open { display: flex; }
.mobile-search { margin-top: 12px; }
.mobile-search input {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,34,39,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-gray {
  background: #f0f0f0;
  color: #444;
  border-color: #e0e0e0;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn-gray:hover { background: #e5e5e5; color: #333; }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 14px 34px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-home {
  background-image: url('../images/2022/08/08/slide1b.jpg');
  min-height: 600px;
}
.hero-inner-page {
  background-position: center;
  background-size: cover;
  min-height: 280px;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 52%; max-width: 52%; }
.hero-image { flex: 0 0 44%; max-width: 44%; }
.hero-image img {
  border: 5px solid rgba(255,255,255,0.85);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  margin: 0 0 6px;
}
.hero-title-sm {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.hero-title-lg {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 28px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Inner page hero */
.hero-inner {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 70px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner .hero-tagline {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}
.hero-inner .hero-info {
  font-size: 1.6rem;
  font-weight: 700;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 70px 0; }
.section-gray { background: var(--gray-bg); }
.section-gray-2 { background: var(--gray-bg-2); }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title-sub {
  font-size: 15px;
  font-style: italic;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 6px;
  display: block;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  text-align: center;
  margin-bottom: 40px;
}
.section-title-left { text-align: left; }

/* ============================================================
   QUALITA SECTION
   ============================================================ */
.qualita {
  display: flex;
  align-items: center;
  gap: 40px;
}
.qualita-img {
  flex: 0 0 180px;
  width: 180px;
}
.qualita-img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
}
.qualita-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.qualita-text p {
  color: var(--gray-text-2);
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
}

/* ============================================================
   SERVICE ICON BOXES (4 boxes)
   ============================================================ */
.icon-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.icon-box {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 30px 20px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.icon-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: #ddd;
}
.icon-box i {
  font-size: 2.6rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.icon-box-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  line-height: 1.4;
}

/* ============================================================
   MULTIMARCA SECTION
   ============================================================ */
.multimarca-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
}
.multimarca-img {
  flex: 0 0 42%;
}
.multimarca-img img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}
.multimarca-content { flex: 1; }
.multimarca-tagline {
  font-size: 14px;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 4px;
}
.multimarca-title {
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  margin-bottom: 28px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}
.feature-item { display: flex; flex-direction: column; gap: 4px; }
.feature-item i {
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 6px;
}
.feature-title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.feature-desc {
  font-size: 12.5px;
  color: var(--gray-text-2);
  line-height: 1.6;
}

/* ============================================================
   SERVICES CARDS (3 cards)
   ============================================================ */
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.service-card i {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 14px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.service-card ul li {
  font-size: 13px;
  color: var(--gray-text-2);
  padding: 4px 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.5;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   CONTACT BOX SECTION
   ============================================================ */
.contact-box {
  display: flex;
  align-items: center;
  gap: 60px;
}
.contact-box-img { flex: 0 0 42%; }
.contact-box-img img { width: 100%; }
.contact-box-info { flex: 1; }
.contact-box-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.contact-box-title {
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-box-phone {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  margin: 4px 0 14px;
  letter-spacing: -1px;
}
.contact-box-addr {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.contact-box-addr i { margin-right: 5px; font-size: 13px; }
.contact-box-cta {
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.brands-text { flex: 0 0 38%; }
.brands-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.brands-text p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}
.brands-logos { flex: 1; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 10px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  transition: var(--transition);
}
.brand-item:nth-child(6n) { border-right: none; }
.brand-item:nth-last-child(-n+6) { border-bottom: none; }
.brand-item:hover { background: #f8f8f8; }
.brand-item img {
  width: 42px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  margin-bottom: 4px;
}
.brand-item span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
}

/* ============================================================
   ABOUT PAGE - 3 COLUMNS
   ============================================================ */
.about-intro { text-align: center; max-width: 750px; margin: 0 auto 50px; }
.about-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.about-intro p { font-size: 14px; color: #555; line-height: 1.8; }

.about-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.about-col { text-align: center; }
.about-col i {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 14px;
  display: block;
}
.about-col h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-col p { font-size: 13px; color: #666; line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-intro { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.contact-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-intro .note {
  font-style: italic;
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 14px;
}
.contact-intro .cta-text { font-size: 14px; color: #555; }

.contact-map-wrap {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  height: 380px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

/* Contact Form */
.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.form-field { margin-bottom: 14px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  color: #333;
  background: #fff;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,34,39,0.08); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.form-captcha span { font-size: 14px; color: #555; font-weight: 500; }
.form-captcha input { width: 100px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; accent-color: var(--red); }
.form-checkbox a { color: var(--red); }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 14px;
  font-size: 14px;
}

/* Contact Info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { font-size: 1.1rem; color: var(--dark); }
.contact-info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  text-decoration: none;
}
.contact-info-text .phone-big {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h1 { font-size: 1.9rem; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.2rem; color: var(--dark); margin: 28px 0 10px; }
.legal-content p, .legal-content li {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-content ul { list-style: disc; padding-left: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 20px 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 13px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12.5px;
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 14px rgba(232,34,39,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }


/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-nav {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb-item { color: #888; display: flex; align-items: center; }
.breadcrumb-item a {
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: #ccc;
  margin: 0 8px;
  font-size: 16px;
}
.breadcrumb-item.active { color: #555; font-weight: 500; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: background 0.2s ease;
}
.faq-q:hover { background: #fafafa; }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-q i {
  flex-shrink: 0;
  font-size: 13px;
  color: #aaa;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); color: var(--red); }

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
}
.faq-a a { color: var(--red); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   GOOGLE REVIEWS MARQUEE
   ============================================================ */
.section-reviews {
  background: #fff;
  overflow: hidden;
  padding-bottom: 80px;
}
.section-reviews .section-title { margin-bottom: 0; }

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.reviews-header-text { flex: 1; min-width: 200px; }

.google-overall-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.07);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.google-overall-info { display: flex; flex-direction: column; gap: 3px; }
.google-overall-top  { display: flex; align-items: center; gap: 10px; }
.google-overall-num  {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.google-overall-stars {
  color: #fbbc04;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.google-overall-label { font-size: 12px; color: #888; }
.reviews-btn-cta { white-space: nowrap; }

/* Fade edges */
.reviews-marquee-outer {
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

/* Skeleton shimmer while loading */
.reviews-skeleton {
  display: flex;
  gap: 18px;
  padding: 10px 80px 14px;
}
.review-skel {
  width: 256px;
  height: 192px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e6ea 50%, #f0f2f5 75%);
  background-size: 400% 100%;
  animation: skel-shine 1.6s ease-in-out infinite;
}
@keyframes skel-shine {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Infinite scrolling track */
.reviews-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-rtl 55s linear infinite;
  cursor: default;
  padding: 10px 0 14px;
}
.reviews-marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual review card */
.review-card {
  width: 256px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  user-select: none;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
img.review-avatar { object-fit: cover; display: block; }

.review-author-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 128px;
}
.review-author-time { font-size: 11px; color: #aaa; margin-top: 1px; }
.review-g-icon { flex-shrink: 0; opacity: 0.9; margin-top: 2px; }

.review-stars { display: flex; gap: 2px; line-height: 1; }
.star-full  { color: #fbbc04; font-size: 14px; }
.star-empty { color: #dde0e4; font-size: 14px; }

.review-text {
  font-size: 12.5px;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 640px) {
  .google-overall-badge { gap: 12px; padding: 14px 16px; width: 100%; flex-shrink: 1; box-sizing: border-box; }
  .reviews-btn-cta { width: 100%; justify-content: center; }
  .reviews-header { margin-bottom: 32px; }
  .google-overall-num { font-size: 1.6rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .icon-boxes { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(5, 1fr); }
  .brand-item:nth-child(6n) { border-right: 1px solid #e8e8e8; }
  .brand-item:nth-child(5n) { border-right: none; }
}

@media (max-width: 900px) {
  .main-nav, .search-form { display: none; }
  .hamburger { display: flex; }
  .hero-content { flex-direction: column; }
  .hero-text, .hero-image { flex: none; max-width: 100%; }
  .hero-title-lg { font-size: 3.2rem; }
  .multimarca-wrap, .contact-box, .brands-section { flex-direction: column; }
  .multimarca-img, .contact-box-img, .brands-text, .brands-logos { flex: none; width: 100%; }
  .services-cards { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }
  .hero-inner .hero-info { font-size: 1.2rem; }
  .hero-inner .hero-tagline { font-size: 13px; }
  .hero-inner { padding: 50px 20px; }
}

@media (max-width: 640px) {
  .icon-boxes { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-title-lg { font-size: 2.8rem; }
  .hero-title-sm { font-size: 1.8rem; }
  .contact-box-phone { font-size: 2.2rem; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .section { padding: 50px 0; }
  .top-bar { padding: 8px 0; }
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
    column-gap: 16px;
  }
  .top-bar-item { white-space: nowrap; }
  .top-bar-item:nth-child(2) { order: 1; }
}

@media (max-width: 400px) {
  .icon-boxes { grid-template-columns: 1fr; }
  .hero-title-lg { font-size: 2.4rem; }
  .qualita { flex-direction: column; }
  .qualita-img { width: 100%; }
  .qualita-img img { width: 100%; height: auto; }
}
