body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #222;
}


.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}
.main-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
}
.header-left {
  flex: 0.3;
  display: flex;
  align-items: center;
}
.header-center {
  flex: 1.1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 32px;
}
.header-right {
  flex: 2.7;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ff5c1a;
  display: flex;
  align-items: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.main-nav li {
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 0 8px 0;
  color: #222;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  position: relative;
}
.main-nav li:hover {
  color: #ff5c1a;
}
.dropdown-arrow {
  font-size: 0.8em;
  margin-left: 2px;
  color: #888;
}

/* Main Navigation Bar (below header) */
.main-nav-bar {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #f2f2f2;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 5;
}
.main-nav-bar.sticky {
  position: fixed;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}
.hamburger-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.hamburger-btn:hover span {
  background: #ff5c1a;
}
.hamburger-btn.active span {
  background: #ff5c1a;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  /* height: 48px; */
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1001;
}
.main-nav-bar li {
  font-size: 1.05rem;
  color: #444;
  font-weight: 500;
  cursor: pointer;
  padding: 0 8px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: border 0.2s, color 0.2s;
  background: none;
}
.main-nav-bar li:hover,
.main-nav-bar li.active {
  color: #ff5c1a;
  border-bottom: 3px solid #ff5c1a;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #ff5c1a;
}
.dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

/* Remove sub-nav styles if not needed */
.sub-nav {
  display: none !important;
}

/* Search Section */
.search-section {
  /*background: url("../images/Home%20Page.webp") center/cover no-repeat;*/
  padding: 40px 0;
  margin: 0;
  position: relative;
  min-height: 300px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.search-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
}
.search-card h1 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #333;
}
.search-card h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #333;
}
.search-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.tab-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: #f8f9fa;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  background: #333;
  color: #fff;
}
.search-options {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.search-options label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #666;
}
.search-options input[type="radio"] {
  accent-color: #ff5c1a;
}
.search-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.search-select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  background: #fff;
  color: #666;
}
.search-btn {
  width: 100%;
  padding: 12px;
  background: #ff5c1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover {
  background: #e04e0e;
}
.advanced-search {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
}
.advanced-search:hover {
  color: #ff5c1a;
}

/* Popular Tyre Brands Section */
.brands-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.brands-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 32px; */
}
.brands-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #333;
}

.brand-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
  overflow-x: auto;
  padding: 20px 0;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  cursor: pointer;
}
.brand-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.brand-item:hover .brand-logo {
  transform: translateY(-2px);
}
.brand-logo.ceat {
  background: #1e3a8a;
  color: #fff;
}
.brand-logo.mrf {
  background: #dc2626;
  color: #fff;
}
.brand-logo.apollo {
  background: #7c3aed;
  color: #fff;
}
.brand-logo.bridgestone {
  background: #000;
  color: #fff;
}
.brand-logo.jk {
  background: #dc2626;
  color: #fff;
}
.brand-logo.goodyear {
  background: #1d4ed8;
  color: #fbbf24;
}
.brand-item span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.view-all-brands {
  color: #ff5c1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.view-all-brands:hover {
  text-decoration: underline;
}

/* Popular Vehicle Brands Section */
.vehicle-brands-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.vehicle-brands-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.vehicle-brands-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #333;
}

.vehicle-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
  overflow-x: auto;
  padding: 20px 0;
}
.vehicle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 100px;
  cursor: pointer;
}
.vehicle-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  border: 2px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vehicle-item:hover .vehicle-logo {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.vehicle-item span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.view-all-vehicle-brands {
  color: #ff5c1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.view-all-vehicle-brands:hover {
  text-decoration: underline;
}

/* Tyres For Popular Model Section */
.popular-models-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.popular-models-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.popular-models-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #333;
}

.model-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
}
.model-card {
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.model-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.model-card:hover .model-image img {
  transform: scale(1.05);
}
.model-card h3 {
  padding: 16px 20px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Find Tyre Dealers Nearby Section */
.dealers-nearby-section {
  background: #fff;
  padding: 40px 0;
}
.dealers-nearby-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.dealers-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.dealers-left {
  flex: 2;
}
.dealers-left h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 32px 0;
  color: #333;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 16px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.city-item:hover {
  background: rgba(255, 92, 26, 0.1);
}
.city-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3f2fd;
  border-radius: 50%;
  margin-bottom: 4px;
}
.city-item span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-align: center;
}
.dealers-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-widget {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 280px;
}
.search-widget p {
  margin: 0 0 16px 0;
  color: #666;
  font-size: 1rem;
}
.location-search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.city-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333;
}
.dropdown-btn {
  padding: 12px 16px;
  border: none;
  background: #f8f9fa;
  color: #666;
  cursor: pointer;
  font-size: 0.8rem;
}
.dropdown-btn:hover {
  background: #e9ecef;
}

/* User Reviews Section */
.user-reviews-section {
  background: #fff;
  padding: 40px 0;
}
.user-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 32px; */
}
.user-reviews-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 32px 0;
  color: #333;
}
.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  flex: 1;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.scroll-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  flex-shrink: 0;
}
.scroll-btn:hover {
  background: #f8f9fa;
  color: #ff5c1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
  /* width: 200px; */
  max-width: 200px;
  flex-shrink: 0;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.review-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4a90e2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}
.user-info {
  flex: 1;
}
.user-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}
.review-date {
  color: #666;
  font-size: 0.85rem;
  margin: 2px 0;
}
.rating {
  color: #ffa500;
  font-size: 0.9rem;
  font-weight: 600;
}
.tyre-model {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.review-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.review-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0 32px;
}
.showroom-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 32px;
  margin-bottom: 24px;
}
.showroom-info h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #222;
}
.showroom-info p {
  font-size: 1.1rem;
  color: #444;
}
.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #ff5c1a;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}
.read-more:hover {
  text-decoration: underline;
}
.read-more-arrow {
  margin-left: 4px;
  font-size: 0.8em;
  transition: transform 0.2s;
}

.search-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}
.search-filters select,
.search-filters button {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}
.search-filters button {
  background: #ff5c1a;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.search-filters button:hover {
  background: #e04e0e;
}
.location-input-container {
  position: relative;
  display: inline-block;
}
.location-input {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  width: 200px;
  cursor: pointer;
}
.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}
.location-input-container:hover .location-dropdown {
  display: block;
}
.detect-location {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}
.detect-location:hover {
  background: #f8f9fa;
}
.location-icon {
  margin-right: 8px;
  color: #007bff;
}
.detect-text {
  color: #007bff;
  font-weight: 500;
}
.trending-areas {
  padding: 12px 0;
}
.trending-areas h4 {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 8px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.area-item {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.2s;
}
.area-item:hover {
  background: #f8f9fa;
}

/* Main Content Grid */
.main-content-grid {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.dealer-cards {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dealer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 16px;
  display: flex;
  gap: 12px;
  border: 1px solid #eee;
  min-height: 200px;
}
.card-image {
  flex: 0 0 210px;
  position: relative;
}
.image-carousel {
  position: relative;
  width: 210px;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
}
.carousel-image {
  width: 210px;
  height: 170px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-image.active {
  opacity: 1;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #ff5c1a;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-carousel:hover .carousel-btn {
  opacity: 1;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dealer-card h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #222;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.verified-badge {
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 500;
}
.top-search-label {
  background: #ff5c1a;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  color: #ffa500;
  font-size: 0.9rem;
}
.rating-text {
  font-size: 0.85rem;
  color: #666;
}
.dealer-address {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-location {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23666" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>')
    no-repeat center center;
  background-size: 14px 14px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}
.tag {
  background: #f0f0f0;
  color: #555;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}
.action-buttons {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.action-buttons button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-show-number {
  background: #4caf50;
  color: white;
  border: none;
}
.btn-show-number:hover {
  background: #45a049;
}
.btn-whatsapp {
  background: white;
  color: #25d366;
  border: 1px solid #25d366;
}
.btn-whatsapp:hover {
  background: #25d366;
  color: white;
}
.btn-deal {
  background: #2196f3;
  color: white;
  border: none;
}
.btn-deal:hover {
  background: #1976d2;
}

/* FAQ Section */
.faq-section {
  margin-top: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 32px;
}
.faq-section h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: #222;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f0f0f0;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #ff5c1a;
  font-weight: bold;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 200px;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Footer Styles */
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 48px;
  font-size: 1rem;
}
.trending-searches {
  /* background: #f8f9fa; */
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
}
.trending-searches h3 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}
.trending-links {
  line-height: 1.8;
  color: #666;
}
.trending-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 4px;
  transition: color 0.2s;
}
.trending-links a:hover {
  color: #ff5c1a;
  text-decoration: underline;
}
.tyre-info-section {
  /* background: #f8f9fa; */
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
}
.tyre-info-section h2 {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 16px 0;
  font-weight: 600;
}
.tyre-info-section h3 {
  font-size: 1rem;
  color: #333;
  margin: 16px 0 12px 0;
  font-weight: 600;
}
.tyre-info-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 12px;
}
.tyre-types-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.tyre-types-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}
.tyre-types-list strong {
  color: #333;
  font-weight: 600;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 24px 32px;
  gap: 32px;
}
.footer-col {
  flex: 1;
  min-width: 180px;
}
.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
  letter-spacing: 0.01em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #7a7a7a;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #ff5c1a;
}
.footer-col.ventures {
  min-width: 220px;
}
.ventures-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
  margin-top: 12px;
}
.ventures-logos img {
  width: 110px;
  height: 32px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px 12px 32px;
  font-size: 0.98rem;
  color: #888;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social span {
  color: #222;
  font-weight: 500;
  margin-right: 6px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: none;
  transition: background 0.2s;
  margin-left: 2px;
}
.social-icon:hover svg path,
.social-icon:hover svg rect,
.social-icon:hover svg circle {
  stroke: #ff5c1a;
  fill: #ff5c1a;
}

.search-bar {
  display: flex;
  align-items: center;
  width: 420px;
  background: #f7f7f7;
  border-radius: 28px;
  border: 1px solid #eee;
  padding: 2px 12px 2px 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  margin-left: 0;
}
.search-bar input[type="text"] {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.08rem;
  flex: 1;
  padding: 10px 0;
  color: #222;
}
.search-bar button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #888;
  padding: 0 8px;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .header-center {
    margin-left: 10px;
  }
  .search-bar {
    width: 260px;
  }
  .main-nav ul {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-header .header-container {
    flex-direction: row;
    align-items: center;
    height: 60px;
    padding: 0 16px;
  }
  .header-left {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .header-center {
    flex: 1;
    margin-left: 16px;
    margin-bottom: 0;
  }
  .search-bar {
    width: 100%;
  }
  .hamburger-btn {
    display: flex;
  }
  .nav-container {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    gap: 0;
    border-top: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-menu.active {
    max-height: 400px;
    padding: 20px 16px;
  }
  .main-nav-bar li {
    font-size: 0.98rem;
    padding: 12px 0;
    height: auto;
    border-bottom: 1px solid #eee;
    width: 100%;
    justify-content: flex-start;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  .main-nav-bar li:last-child {
    border-bottom: none;
  }
  .main-nav-bar li:hover,
  .main-nav-bar li.active {
    color: #ff5c1a;
    border-bottom: 1px solid #eee;
  }
  .main-nav-bar li:last-child:hover,
  .main-nav-bar li:last-child.active {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .main-header .header-container {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 8px 12px;
  }
  .header-left {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }
  .header-center {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
  .logo {
    font-size: 1.3rem;
  }
  .search-bar {
    font-size: 0.98rem;
    padding: 2px 6px 2px 10px;
  }
  .main-nav-bar ul {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
  }
  .main-nav-bar li {
    font-size: 0.93rem;
    padding: 8px 10px;
    border-bottom: 3px solid transparent;
  }
  .main-nav-bar li:hover,
  .main-nav-bar li.active {
    color: #ff5c1a;
    border-bottom: 3px solid #ff5c1a;
  }
}
@media (max-width: 1000px) {
  .main-content-grid {
    flex-direction: column;
  }
  .dealer-cards {
    grid-template-columns: 1fr;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px 16px 16px;
  }
  .footer-col.ventures {
    min-width: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 10px 16px;
  }
}
@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }
  .comparison-banner {
    text-align: center;
    padding: 20px 0;
  }
  .comparison-banner h2 {
    font-size: 1.5rem;
    margin: 0;
  }
  h2 {
    text-align: center;
    font-size: 1.15rem;
  }
  .dealers-content {
    flex-direction: column;
    gap: 32px;
  }
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .dealers-nearby-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .search-section {
    padding: 24px 0;
  }
  .search-container {
    padding: 0 12px;
  }
  .comparison-banner h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .city-item {
    padding: 12px 4px;
  }
  .city-icon {
    width: 50px;
    height: 50px;
  }
  .city-item span {
    font-size: 0.8rem;
  }
  .search-widget {
    min-width: auto;
    width: 100%;
  }
  .user-reviews-container {
    padding: 0 12px;
  }
  .review-card {
    max-width: 200px;
    min-width: 180px;
  }
}

@media (max-width: 450px) {
  .dealer-card {
    flex-direction: column;
  }
  .card-image {
    flex: none;
    align-self: center;
  }
  .action-buttons {
    flex-direction: row;
    gap: 8px;
  }
  .search-filters {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .search-filters select,
  .location-input {
    width: 80%;
  }
  .location-input-container {
    width: 80%;
  }
  .search-filters button {
    width: 120px;
    padding: 12px;
    align-self: center;
  }
}
