/* Custom CSS for Shocked Electronics - Bootstrap 5 Version */
/* Exact replica of the Next.js/Tailwind styling */

/* ==================== */
/* CSS Variables / Root */
/* ==================== */
:root {
  --brand-red: #e30613;
  --brand-yellow: #ffc400;
  --brand-dark-gray: #1f1f1f;
  --brand-light-gray: #f4f4f5;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;
  --text-gray-700: #374151;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --border-gray-200: #e5e7eb;
  --border-gray-700: #374151;
  --bg-gray-50: #f9fafb;
  --bg-gray-200: #e5e7eb;
  --bg-gray-800: #1f2937;
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
}

/* ==================== */
/* Base Styles */
/* ==================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  font-feature-settings: "rlig" 1, "calt" 1;
  background-color: #fff;
  color: var(--brand-dark-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent horizontal overflow from Bootstrap rows */
.row {
  margin-left: 0;
  margin-right: 0;
}

.row > * {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ==================== */
/* Header / Navigation */
/* ==================== */
.main-header .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .main-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .navbar-brand img {
    height: 56px;
  }
}

.main-header {
  background-color: var(--brand-dark-gray);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.main-header .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-300);
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
}

.main-header .nav-link:hover {
  color: var(--brand-yellow);
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--brand-yellow);
}

/* Mobile menu */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-nav {
  background-color: var(--brand-dark-gray);
  border-top: 1px solid var(--border-gray-700);
}

.mobile-nav .nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-gray-300);
  transition: all 0.2s ease;
}

.mobile-nav .nav-link:hover {
  color: var(--brand-yellow);
  background-color: var(--bg-gray-800);
}

/* Mobile Contact Icons */
.mobile-contact-icons {
  margin-left: auto;
  margin-right: 0.75rem;
}

.mobile-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--bg-gray-800);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-icon-btn:hover {
  background-color: var(--brand-red);
  color: #fff;
}

.mobile-icon-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-icon-btn.sms-btn {
  background-color: var(--bg-gray-800);
}

.mobile-icon-btn.sms-btn:hover {
  background-color: var(--brand-yellow);
}

.sms-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--brand-yellow);
  letter-spacing: 0.02em;
}

.mobile-icon-btn.sms-btn:hover .sms-text {
  color: var(--brand-dark-gray);
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--brand-red);
}

.btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1.5rem;
  height: 2.75rem;
}

.btn-primary:hover {
  background-color: rgba(227, 6, 19, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #fff;
}

.btn-secondary {
  background-color: var(--brand-yellow);
  color: var(--brand-dark-gray);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1.5rem;
  height: 2.75rem;
}

.btn-secondary:hover {
  background-color: rgba(255, 196, 0, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: var(--brand-dark-gray);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  height: 2.75rem;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--brand-dark-gray);
}

.btn-sm {
  height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}

.btn-lg {
  height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--brand-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-dark-gray);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: var(--brand-yellow);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-gray-300);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray-300);
}

.trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-yellow);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Card */
.hero-card-wrapper {
  position: relative;
}

.hero-card-bg {
  position: absolute;
  top: 2rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 196, 0, 0.2);
  border-radius: 1rem;
  transform: rotate(3deg);
}

.hero-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
}

.hero-card .card-body {
  padding: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--bg-gray-50);
  transition: background-color 0.2s ease;
}

.stat-item:hover {
  background-color: var(--brand-light-gray);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(227, 6, 19, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-red);
}

.stat-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark-gray);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray-500);
}

.hero-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.hero-card-footer p:first-child {
  font-size: 0.875rem;
  color: var(--text-gray-500);
}

.hero-card-footer p:last-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* ==================== */
/* Section Badges */
/* ==================== */
.section-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-badge.red {
  background-color: rgba(227, 6, 19, 0.1);
  color: var(--brand-red);
}

.section-badge.yellow {
  background-color: rgba(255, 196, 0, 0.2);
  color: var(--amber-700);
}

.section-badge.yellow-dark {
  background-color: rgba(255, 196, 0, 0.2);
  color: var(--brand-dark-gray);
}

/* ==================== */
/* Section Titles */
/* ==================== */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-dark-gray);
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: var(--text-gray-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== */
/* Services Section */
/* ==================== */
.services-section {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 992px) {
  .services-section {
    padding: 7rem 0;
  }
}

.service-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card {
  height: 100%;
  border: 1px solid var(--border-gray-200);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(227, 6, 19, 0.2);
  transform: translateY(-5px);
}

.service-card .card-body {
  padding: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-icon.red {
  background-color: rgba(227, 6, 19, 0.1);
}

.service-icon.yellow {
  background-color: rgba(255, 196, 0, 0.2);
}

.service-card:hover .service-icon.red {
  background-color: var(--brand-red);
  transform: scale(1.1);
}

.service-card:hover .service-icon.yellow {
  background-color: var(--brand-yellow);
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  transition: color 0.3s ease;
}

.service-icon.red svg {
  color: var(--brand-red);
}

.service-icon.yellow svg {
  color: var(--amber-600);
}

.service-card:hover .service-icon svg {
  color: #fff;
}

.service-card .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark-gray);
  margin-bottom: 0.5rem;
}

.service-card .card-text {
  color: var(--text-gray-600);
  line-height: 1.625;
  font-size: 0.875rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-link.red {
  color: var(--brand-red);
}

.service-link.yellow {
  color: var(--amber-600);
}

.service-link:hover {
  gap: 0.5rem;
}

.service-link svg {
  width: 1rem;
  height: 1rem;
}

/* ==================== */
/* Brands Section */
/* ==================== */
.brands-section {
  padding: 5rem 0;
  background-color: var(--brand-light-gray);
}

@media (min-width: 992px) {
  .brands-section {
    padding: 7rem 0;
  }
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.brand-tag {
  padding: 0.625rem 1.25rem;
  background-color: #fff;
  border: 1px solid var(--border-gray-200);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
  transition: all 0.2s ease;
  cursor: default;
}

.brand-tag:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: scale(1.05) translateY(-2px);
}

/* ==================== */
/* Service Categories / Tabs */
/* ==================== */
.categories-section {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 992px) {
  .categories-section {
    padding: 7rem 0;
  }
}

.nav-tabs-custom {
  border: none;
  background-color: var(--brand-light-gray);
  border-radius: 0.5rem;
  padding: 0.25rem;
  display: inline-flex;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.nav-tabs-custom .nav-link {
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-600);
  background-color: transparent;
  transition: all 0.2s ease;
}

.nav-tabs-custom .nav-link:hover {
  color: var(--brand-dark-gray);
}

.nav-tabs-custom .nav-link.active {
  background-color: #fff;
  color: var(--brand-dark-gray);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.category-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--bg-gray-50);
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.category-item:hover {
  background-color: var(--brand-light-gray);
}

.category-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.category-item svg.red {
  color: var(--brand-red);
}

.category-item svg.yellow {
  color: var(--amber-500);
}

.category-item span {
  color: var(--text-gray-700);
}

/* ==================== */
/* About Section */
/* ==================== */
.about-section {
  padding: 5rem 0;
  background-color: var(--brand-light-gray);
}

@media (min-width: 992px) {
  .about-section {
    padding: 7rem 0;
  }
}

.about-text p {
  color: var(--text-gray-600);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray-700);
  font-size: 0.875rem;
}

.about-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.about-features li svg.red {
  color: var(--brand-red);
}

.about-features li svg.yellow {
  color: var(--amber-500);
}

.about-card {
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--bg-gray-200);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #fff;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark-gray);
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-gray-500);
}

.about-stat-divider {
  width: 1px;
  height: 3rem;
  background-color: var(--border-gray-200);
}

/* ==================== */
/* Gallery Section */
/* ==================== */
.gallery-section {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 992px) {
  .gallery-section {
    padding: 7rem 0;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption p {
  color: #fff;
  font-weight: 600;
  margin: 0;
}

/* ==================== */
/* How It Works Section */
/* ==================== */
.how-it-works-section {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 992px) {
  .how-it-works-section {
    padding: 7rem 0;
  }
}

.step-card {
  position: relative;
  text-align: center;
}

.step-connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background-color: var(--border-gray-200);
}

@media (min-width: 992px) {
  .step-connector {
    display: block;
  }
}

.step-connector-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.step-connector-dot.yellow {
  background-color: var(--brand-yellow);
}

.step-connector-dot.red {
  background-color: var(--brand-red);
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.step-icon-wrapper.red {
  background-color: rgba(227, 6, 19, 0.1);
}

.step-icon-wrapper.yellow {
  background-color: rgba(255, 196, 0, 0.2);
}

.step-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}

.step-icon-wrapper.red svg {
  color: var(--brand-red);
}

.step-icon-wrapper.yellow svg {
  color: var(--amber-600);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-number.red {
  background-color: var(--brand-red);
  color: #fff;
}

.step-number.yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark-gray);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark-gray);
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--text-gray-600);
  line-height: 1.625;
}

/* ==================== */
/* FAQ Section */
/* ==================== */
.faq-section {
  padding: 5rem 0;
  background-color: var(--brand-light-gray);
}

@media (min-width: 992px) {
  .faq-section {
    padding: 7rem 0;
  }
}

.accordion-item {
  background-color: #fff;
  border: 1px solid var(--border-gray-200);
  border-radius: var(--radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 500;
  color: var(--brand-dark-gray);
  background-color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--brand-dark-gray);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-gray-200);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1f1f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 1.25rem 1rem;
  color: var(--text-gray-600);
  line-height: 1.625;
}

/* ==================== */
/* Testimonials Section */
/* ==================== */
.testimonials-section {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 992px) {
  .testimonials-section {
    padding: 7rem 0;
  }
}

.testimonial-card {
  height: 100%;
  border: 1px solid var(--border-gray-200);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-body {
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand-yellow);
  color: var(--brand-yellow);
}

.testimonial-text {
  color: var(--text-gray-600);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(227, 6, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--brand-red);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--brand-dark-gray);
  margin: 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  margin: 0;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact-section {
  padding: 5rem 0;
  background-color: var(--brand-light-gray);
}

@media (min-width: 992px) {
  .contact-section {
    padding: 7rem 0;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.red {
  background-color: rgba(227, 6, 19, 0.1);
}

.contact-icon.yellow {
  background-color: rgba(255, 196, 0, 0.2);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-icon.red svg {
  color: var(--brand-red);
}

.contact-icon.yellow svg {
  color: var(--amber-600);
}

.contact-label {
  font-weight: 600;
  color: var(--brand-dark-gray);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--text-gray-600);
  margin: 0;
}

.contact-value a {
  color: var(--text-gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--brand-red);
}

.map-placeholder {
  margin-top: 2rem;
  background-color: var(--bg-gray-200);
  border-radius: 0.75rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 2rem;
  height: 2rem;
  color: var(--text-gray-400);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--text-gray-500);
  margin: 0;
}

.contact-form-card {
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
}

.contact-form-card .card-header {
  background-color: #fff;
  border-bottom: none;
  padding: 1.5rem 1.5rem 0;
}

.contact-form-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark-gray);
  margin-bottom: 0.5rem;
}

.contact-form-card .card-subtitle {
  color: var(--text-gray-500);
  font-size: 0.875rem;
}

.contact-form-card .card-body {
  padding: 1.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
  margin-bottom: 0.25rem;
}

.form-control {
  border: 1px solid var(--border-gray-200);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-control::placeholder {
  color: var(--text-gray-400);
}

/* ==================== */
/* Footer */
/* ==================== */
.main-footer {
  background-color: var(--brand-dark-gray);
  color: var(--text-gray-300);
  padding: 4rem 0;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-contact-item svg.red {
  color: var(--brand-red);
}

.footer-contact-item svg.yellow {
  color: var(--brand-yellow);
}

.footer-contact-item a {
  color: var(--text-gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--bg-gray-800);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--brand-red);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-gray-400);
  transition: color 0.2s ease;
}

.footer-social-link:hover svg {
  color: #fff;
}

.footer-heading {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-links a svg {
  width: 1rem;
  height: 1rem;
}

.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-gray-700);
  padding-top: 2rem;
  margin-top: 2.5rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  margin: 0;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-gray-500);
  margin: 0;
}

.footer-legal-links {
  font-size: 0.875rem;
}

.footer-legal-links a {
  color: var(--text-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--brand-red);
}

.footer-legal-links span {
  color: var(--text-gray-500);
}

/* ==================== */
/* Utility Classes */
/* ==================== */
.text-brand-red {
  color: var(--brand-red) !important;
}

.text-brand-yellow {
  color: var(--brand-yellow) !important;
}

.text-amber-500 {
  color: var(--amber-500) !important;
}

.text-amber-600 {
  color: var(--amber-600) !important;
}

.text-amber-700 {
  color: var(--amber-700) !important;
}

.bg-brand-light-gray {
  background-color: var(--brand-light-gray) !important;
}

/* ==================== */
/* Animations */
/* ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }
}

/* ==================== */
/* Our Repair Services Grid Section */
/* ==================== */
.repair-services-grid {
  padding: 5rem 0;
  background-color: #fff;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--brand-red);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.title-underline.yellow {
  background: var(--brand-yellow);
}

.repair-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.repair-card {
  background: #fff;
  border: 1px solid var(--border-gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--brand-red);
}

.repair-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.repair-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.repair-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark-gray);
  margin: 0;
}

.repair-icon {
  flex-shrink: 0;
}

.repair-icon.red {
  color: var(--brand-red);
}

.repair-icon.yellow {
  color: var(--brand-yellow);
}

.repair-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.repair-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-gray-600);
  border-bottom: 1px solid var(--border-gray-200);
  transition: color 0.2s ease;
}

.repair-list li:last-child {
  border-bottom: none;
}

.repair-card:hover .repair-list li {
  color: var(--brand-dark-gray);
}

.repair-list .arrow {
  color: var(--brand-red);
  font-weight: 600;
  flex-shrink: 0;
}

/* ==================== */
/* Brands We Specialize In Section */
/* ==================== */
.brands-section {
  padding: 5rem 0;
  background-color: var(--bg-gray-50);
}

.brand-category {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.brand-category-title {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  margin: 0;
  border-bottom: 3px solid var(--brand-red);
}

.brand-category-title.red {
  color: var(--brand-red);
}

.brand-category-title.yellow {
  color: var(--brand-yellow);
  border-bottom-color: var(--brand-yellow);
}

.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-list li {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-gray-700);
  border-bottom: 1px solid var(--border-gray-200);
  transition: background-color 0.2s ease;
}

.brand-list li:last-child {
  border-bottom: none;
}

.brand-list li:hover {
  background-color: var(--bg-gray-50);
}

.brand-list li a {
  color: var(--text-gray-700);
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.brand-list li a:hover {
  color: var(--brand-red);
}

.brands-note {
  color: var(--text-gray-500);
  font-size: 0.9375rem;
}

/* ==================== */
/* Brands We Service Tags Section */
/* ==================== */
.brands-tags-section {
  padding: 5rem 0;
  background-color: var(--bg-gray-50);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

a.brand-tag {
  display: inline-block;
  background: #fff;
  color: var(--text-gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid var(--border-gray-200);
  text-decoration: none;
  transition: all 0.2s ease;
}

a.brand-tag:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25);
}
