/* ABM Tyres Mobile Website - Exact Match */

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

/* Ensure all images render properly */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.4;
  color: #333;
  background: #f5f5f5;
  overflow-x: hidden;
}

/* Mobile Container - Constrain width like reference */
.top-bar,
.brand,
.main-hero,
.service-points,
.payment-cards,
.how-it-works,
.why-choose,
.customer-love,
.coverage,
.service-images,
.bottom-cta,
.footer {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: #000;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.stars {
  color: #ffd600;
  margin-right: 8px;
}

.stars i {
  font-size: 12px;
  margin: 0 1px;
}

/* Premium Brand Design */
.brand {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd600, #ffed4e, #ffd600);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.premium-brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.brand-logo-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tyre-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  animation: wheel-rotate 6s linear infinite;
}

.wheel-rim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #ffd600;
  border-radius: 50%;
  box-shadow: 
    0 0 0 2px rgba(255, 214, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.wheel-spokes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, #ffd600, #ffed4e);
  transform-origin: 50% 0;
  border-radius: 1px;
}

.spoke:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.spoke:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.spoke:nth-child(3) { transform: translate(-50%, -50%) rotate(180deg); }
.spoke:nth-child(4) { transform: translate(-50%, -50%) rotate(270deg); }

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wheel-center i {
  font-size: 8px;
  color: #ffd600;
  animation: clock-pulse 2s ease-in-out infinite;
}

@keyframes wheel-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes clock-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-name::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd600, #ffed4e, #ffd600);
  border-radius: 2px;
  opacity: 0.8;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 214, 0, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 214, 0, 0.2);
}

/* Main Hero Section */
.main-hero {
  background: #ffd600;
  padding: 20px 15px 0 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 480px;
  margin: 0 auto;
}

.main-title {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.location {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Service Banner Text - Inline Badge Style */
.service-banner-text {
  margin-bottom: 20px;
  text-align: center;
}

.main-service-line {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-badge {
  background: #000;
  color: #ffd600;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: none;
  border: 2px solid #ffd600;
  animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  0% { box-shadow: 0 0 5px rgba(255, 214, 0, 0.3); }
  100% { box-shadow: 0 0 15px rgba(255, 214, 0, 0.8); }
}

/* Stylish Text Display - Engaging Text Presentation */
.stylish-text-display {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.text-line {
  text-align: center;
  padding: 8px 12px;
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.text-line:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
  border-radius: 25px 25px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.text-line:nth-child(2)::before {
  background: linear-gradient(90deg, #dc3545, #ff4757);
}

.text-line:hover::before {
  opacity: 1;
}

.call-text .text-content {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.2px;
  position: relative;
}

.highlight-word {
  font-weight: 800;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 2px rgba(40, 167, 69, 0.3));
  }
  50% { 
    filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.6));
  }
}

.eta-text .text-content {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  letter-spacing: -0.2px;
  position: relative;
}

.eta-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 6px;
  background: rgba(220, 53, 69, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.time-highlight {
  font-weight: 800;
  background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
  animation: time-pulse 2s ease-in-out infinite;
}

@keyframes time-pulse {
  0%, 100% { 
    filter: drop-shadow(0 0 2px rgba(220, 53, 69, 0.3));
  }
  50% { 
    filter: drop-shadow(0 0 6px rgba(220, 53, 69, 0.5));
  }
}

.cta-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.call-btn {
  flex: 1;
  background: #000;
  color: white;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.call-btn:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.call-btn i {
  font-size: 16px;
}

.whatsapp-btn {
  flex: 1;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 16px;
}

.driver-status {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.green-dot {
  width: 12px;
  height: 12px;
  background: #28a745;
  border-radius: 50%;
  margin-right: 6px;
  animation: driver-available 2s ease-in-out infinite;
  position: relative;
}

.green-dot::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  animation: driver-pulse 2s ease-in-out infinite;
}

@keyframes driver-available {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
  }
}

@keyframes driver-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: scale(1.5);
    opacity: 0;
  }
}

.van-image-container {
  margin-top: 0;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: -15px;
  background: #ffd600;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.van-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  object-fit: cover;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  background: transparent;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}



/* Service Points */
.service-points {
  background: linear-gradient(135deg, #ffd600 0%, #ffed4e 100%);
  padding: 25px 20px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 2;
}

.service-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
}

.service-point {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
  gap: 15px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.service-point:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-point:last-child {
  margin-bottom: 0;
}

.service-point i {
  color: #28a745;
  font-size: 20px;
  min-width: 20px;
  text-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

/* Payment Cards */
.payment-cards {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-top: -10px;
  z-index: 2;
}

.payment-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #ffed4e);
  border-radius: 2px;
}

.cards-image {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.cards-image:hover {
  transform: scale(1.05);
}

/* How It Works */
.how-it-works {
  background: white;
  padding: 25px 15px;
  margin: 0 auto;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.steps {
  max-width: 480px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: #ffd600;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  padding-top: 5px;
}

.how-it-works-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.how-works-emoji {
  width: 70px;
  height: 70px;
  object-fit: contain;
  padding: 0;
  margin-right: 10px;
}

/* Why Choose Us */
.why-choose {
  background: #f8f9fa;
  padding: 25px 15px;
  margin: 0 auto;
}

.benefits {
  max-width: 480px;
  margin: 0 auto;
}

.benefit {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.benefit:last-child {
  margin-bottom: 0;
}

.benefit.highlight {
  background: #ffd600;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

.why-choose-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.why-choose-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  padding: 0;
  margin-left: 10px;
  margin-top: -16px;
}

/* Customer Love */
.customer-love {
  background: white;
  padding: 25px 15px;
  text-align: center;
  margin: 0 auto;
}

.reviews-container {
  max-width: 480px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e8eaed;
}

.google-branding {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #5f6368;
}

.google-branding i {
  font-size: 20px;
  background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc04, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 24px;
  font-weight: 700;
  color: #202124;
  display: block;
}

.rating-stars {
  color: #fbbc04;
  font-size: 14px;
  margin: 4px 0;
}

.total-reviews {
  font-size: 12px;
  color: #5f6368;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: #f7f8fa;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(60,72,88,0.06);
  margin-bottom: 32px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0e0e0;
}

.author-name {
  font-weight: 700;
  color: #202124;
  font-size: 17px;
  margin: 0 !important;
  padding: 0 !important;
}

.google-g {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 4px;
}

.verified-badge {
  color: #1a73e8;
  font-size: 16px;
  vertical-align: middle;
}

.verified-icon-img {
  width: 14px;
  height: 14px;
  vertical-align: -4px;
  margin-left: 0;
  margin-right: 0;
}

.review-date {
  color: #5f6368;
  font-size: 14px;
  margin-top: 2px;
  margin-bottom: 8px;
  margin-left: 0;
  text-align: left;
}

.review-stars {
  color: #fbbc04;
  font-size: 22px;
  margin-bottom: 10px;
  margin-left: 64px;
}

.review-text {
  text-align: left;
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  word-break: break-word;
  margin-left: 0;
}

.load-more-btn {
  display: block;
  margin: 32px auto 0 auto;
  background: #f5f6fa;
  color: #222;
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(60,72,88,0.06);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  min-width: 220px;
  width: auto;
  max-width: 90vw;
}

.load-more-btn:hover {
  background: #ececec;
  box-shadow: 0 4px 16px rgba(60,72,88,0.10);
}

@media (max-width: 700px) {
  .review-card {
    padding: 18px 10px 16px 10px;
    max-width: 98vw;
  }
  .review-header {
    gap: 10px;
  }
  .reviewer-avatar {
    width: 36px;
    height: 36px;
  }
  .author-name {
    font-size: 15px;
  }
  .google-g {
    width: 16px;
    height: 16px;
  }
  .verified-badge {
    font-size: 13px;
  }
  .verified-icon-img {
    width: 13px;
    height: 13px;
    margin-left: 2px;
    margin-right: 1px;
  }
  .review-date, .review-stars, .review-text {
    margin-left: 48px;
  }
  .review-stars {
    font-size: 16px;
  }
  .review-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .reviews-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .overall-rating {
    text-align: center;
  }
  
  .reviews-grid {
    gap: 12px;
  }
  
  .review-card {
    padding: 14px 8px 12px 8px;
    border-radius: 8px;
  }
  
  .reviewer-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .review-text {
    font-size: 13px;
  }
  
  .load-more-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Coverage */
.coverage {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 35px 20px;
  text-align: center;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: 2px solid #ffd600;
}

.coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #ffed4e, #ffd600);
  animation: shimmer 2s infinite;
}

.coverage::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.coverage-content {
  position: relative;
  z-index: 2;
}

.coverage-icon {
  margin-bottom: 20px;
  position: relative;
}

.coverage-icon i {
  font-size: 36px;
  color: #ffd600;
  text-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
  animation: icon-float 3s ease-in-out infinite;
}

.coverage-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.coverage-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Coverage animations */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  animation: floating-bounce 2s ease-in-out infinite;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.floating-call-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd600 0%, #ffed4e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 3px solid #fff;
}

.floating-call-link:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 214, 0, 0.6);
}

.floating-call-link:active {
  transform: scale(0.95);
}

.floating-call-link i {
  font-size: 20px;
  margin-bottom: 2px;
  animation: phone-pulse 2s infinite;
}

.floating-call-text {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

@keyframes floating-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes phone-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Mobile optimizations for floating button */
@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 25px;
    right: 15px;
    left: auto;
    transform: none;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  
  .floating-call-link {
    width: 65px;
    height: 65px;
  }
  
  .floating-call-link i {
    font-size: 18px;
  }
  
  .floating-call-text {
    font-size: 9px;
  }
}

/* Service Images */
.service-images {
  background: white;
  padding: 20px 15px;
  margin: 0 auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

/* Bottom CTA */
.bottom-cta {
  background: #ffd600;
  padding: 25px 15px;
  text-align: center;
  margin: 0 auto;
}

.cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: white;
  padding: 40px 20px 30px 20px;
  text-align: center;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd600, #ffed4e, #ffd600);
  animation: shimmer 2s ease-in-out infinite;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-logo-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-tyre-wheel {
  position: relative;
  width: 100%;
  height: 100%;
}

.footer-wheel-rim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #ffd600;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-wheel-center i {
  font-size: 8px;
  color: #ffd600;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-brand-text {
  font-size: 20px;
  font-weight: 800;
  color: #ffd600;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.contact-item i {
  color: #ffd600;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-actions-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-call-btn {
  background: #ffd600;
  color: #000;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.footer-call-btn:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.footer-call-btn i {
  font-size: 16px;
}

.footer-whatsapp-btn {
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-btn i {
  font-size: 16px;
}

.footer-payment-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-cards-image {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-cards-image:hover {
  opacity: 1;
}

.footer-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ccc;
}

.feature-item i {
  color: #ffd600;
  font-size: 14px;
}

/* Mobile Responsive - Full width on mobile */
@media (max-width: 768px) {
  .top-bar,
  .brand,
  .main-hero,
  .service-points,
  .payment-cards,
  .how-it-works,
  .why-choose,
  .customer-love,
  .coverage,
  .service-images,
  .bottom-cta,
  .footer {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .steps {
    max-width: 100%;
  }
  
  .benefits {
    max-width: 100%;
  }
  
  .love-content {
    max-width: 100%;
  }
  
  .image-grid {
    max-width: 100%;
  }
  
  .van-image-container {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -15px;
  }
  
  .main-hero {
    padding: 20px 0 0 0;
  }
  

  
  /* Mobile-optimized coverage section */
  .coverage {
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 20px;
    max-width: calc(100% - 30px);
    width: calc(100% - 30px);
  }
  
  .coverage-title {
    font-size: 20px;
  }
  
  .coverage-subtitle {
    font-size: 14px;
    max-width: 260px;
  }
  
  .coverage-icon i {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .brand {
    padding: 15px 0;
  }
  
  .premium-brand-container {
    gap: 12px;
  }
  
  .brand-logo-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .brand-name {
    font-size: 20px;
  }
  
  .brand-tagline {
    font-size: 10px;
    padding: 1px 5px;
  }
  
  .main-title {
    font-size: 24px;
  }
  
  .main-service-line {
    font-size: 15px;
  }
  
  .service-badge {
    font-size: 13px;
    padding: 3px 10px;
  }
  
  .stylish-text-display {
    max-width: 320px;
    gap: 8px;
  }
  
  .text-line {
    padding: 8px 12px;
  }
  
  .call-text .text-content {
    font-size: 15px;
  }
  
  .eta-text .text-content {
    font-size: 14px;
  }
  
  .eta-label {
    font-size: 11px;
    padding: 1px 5px;
  }
  
  .cta-buttons {
    max-width: 286px;
    padding: 0 15px;
  }
  
  .call-btn,
  .whatsapp-btn {
    font-size: 13px;
    padding: 10px 6px;
  }
  
  .cards-image {
    max-width: 70%;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .cta-title {
    font-size: 20px;
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-image img {
    height: 220px;
  }
}

@media (max-width: 360px) {
  .main-title {
    font-size: 22px;
  }
  
  .main-service-line {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .service-badge {
    font-size: 12px;
    padding: 2px 8px;
  }
  
  .stylish-text-display {
    max-width: 300px;
    gap: 6px;
  }
  
  .text-line {
    padding: 6px 10px;
  }
  
  .call-text .text-content {
    font-size: 14px;
  }
  
  .eta-text .text-content {
    font-size: 13px;
  }
  
  .eta-label {
    font-size: 10px;
    padding: 1px 4px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .main-hero {
    padding: 15px 10px 0 10px;
  }
  
  .service-points,
  .payment-cards,
  .how-it-works,
  .why-choose,
  .customer-love,
  .coverage,
  .service-images,
  .bottom-cta,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .service-points {
    padding: 20px 15px;
    border-radius: 0;
    margin-top: 0;
  }
  
  .payment-cards {
    padding: 25px 15px;
    border-radius: 15px;
    margin-top: -8px;
  }
  
  .service-point {
    padding: 10px 12px;
    margin-bottom: 15px;
  }
  
  .cta-buttons {
    padding: 0 10px;
  }
  
  .cards-image {
    max-width: 80%;
  }
}

.uk-map-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin: 30px auto 0 auto;
  padding: 28px 10px 18px 10px;
  max-width: 480px;
  text-align: center;
  position: relative;
}

.uk-map-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(40,167,69,0.07);
  overflow: hidden;
  padding: 10px 0 0 0;
}

.uk-map-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: none;
}

.uk-map-caption {
  font-size: 15px;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

@media (max-width: 600px) {
  .uk-map-section {
    padding: 18px 2px 10px 2px;
    border-radius: 12px;
  }
  .uk-map-container {
    max-width: 98vw;
    border-radius: 10px;
    padding: 4px 0 0 0;
  }
  .uk-map-caption {
    font-size: 13px;
  }
}

.england-coverage-banner {
  background: #fffbe6;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(255,214,0,0.10);
  margin: 32px auto 0 auto;
  padding: 32px 10px 22px 10px;
  max-width: 480px;
  text-align: center;
  position: relative;
  border: 2px solid #ffd600;
}

.england-coverage-headline {
  font-size: 1.35rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px #fffbe6, 0 1px 0 #ffd600;
}

.england-coverage-sub {
  font-size: 1.05rem;
  color: #28a745;
  margin-bottom: 18px;
  font-weight: 600;
}

.england-svg-container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 10px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(40,167,69,0.07);
  padding: 12px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.england-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: none;
}

.england-coverage-caption {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

@media (max-width: 600px) {
  .england-coverage-banner {
    padding: 18px 2px 10px 2px;
    border-radius: 14px;
  }
  .england-svg-container {
    max-width: 98vw;
    border-radius: 10px;
    padding: 4px 0 0 0;
  }
  .england-coverage-headline {
    font-size: 1.1rem;
  }
  .england-coverage-caption {
    font-size: 0.95rem;
  }
}



@media (max-width: 600px) {
  .how-works-emoji {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}

/* Service Banner */
.service-banner {
  background: white;
  padding: 20px 15px;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0;
}

.why-choose {
  background: #f8f9fa;
  padding: 25px 15px;
  margin: 0 auto;
}

.benefits {
  max-width: 480px;
  margin: 0 auto;
}

.benefit {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.benefit:last-child {
  margin-bottom: 0;
}

.benefit.highlight {
  background: #ffd600;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

.why-choose-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.why-choose-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  padding: 0;
  margin-left: 10px;
  margin-top: -16px;
}

@media (max-width: 600px) {
  .why-choose-img {
    width: 60px;
    height: 60px;
    margin-left: 6px;
    margin-top: -10px;
  }
  .why-choose-title-row {
    gap: 10px;
    margin-bottom: 14px;
  }
}

.reviews-visual {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.review-image {
  width: 140px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin: 0;
  display: block;
}

@media (max-width: 400px) {
  .review-image {
    width: 44vw;
  }
}

@media (max-width: 650px) {
  .review-image {
    width: 48vw;
    min-width: 0;
    max-width: 100%;
  }
  .reviews-visual {
    flex-direction: row;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .review-image {
    width: 98vw;
    max-width: 100%;
  }
  .reviews-visual {
    flex-direction: column;
    gap: 12px;
  }
}

.avatar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-right: 12px;
}

.google-icon-img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  opacity: 1;
  box-shadow: 0 1px 4px rgba(60,64,67,0.10);
  margin-top: 2px;
}

.avatar-badge-container {
  position: relative;
  width: 56px;
  height: 56px;
  margin-right: 16px;
  display: inline-block;
}
.avatar-badge-container .reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.avatar-badge-container .google-icon-img {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  z-index: 2;
  padding: 2px;
}
@media (max-width: 600px) {
  .avatar-badge-container {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .avatar-badge-container .reviewer-avatar {
    width: 40px;
    height: 40px;
  }
  .avatar-badge-container .google-icon-img {
    width: 18px;
    height: 18px;
    right: -3px;
    left: auto;
    bottom: -3px;
    padding: 1px;
  }
}

@media (max-width: 700px) {
  .google-icon-img {
    width: 13px;
    height: 13px;
  }
  .avatar-group {
    margin-right: 6px;
  }
}

.author-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-row {
  display: flex;
  align-items: flex-start;
}
.avatar-badge-container {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.review-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}
.author-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-stars {
  color: #fbbc04;
  font-size: 15px;
  margin-bottom: 4px;
  margin-top: 0;
  text-align: left;
  padding-left: 0 !important;
  margin-left: 0 !important;
  letter-spacing: 0;
}
.review-stars i {
  margin-right: 0.1px;
  border-radius: 2px;
  background: none;
  padding: 0;
  vertical-align: middle;
}
.review-text {
  color: #202124;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.review-card {
  padding: 24px 24px;
}
@media (max-width: 600px) {
  .avatar-badge-container {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    margin-right: 8px;
  }
  .review-card {
    padding: 10px 10px;
  }
  .review-main-content {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .review-text {
    font-size: 14px;
  }
}

.avatar-initial {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #8e44ad;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .avatar-initial {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .google-icon-img {
    background: #fff !important;
    opacity: 1 !important;
  }
  .review-date {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    width: 100%;
  }
}

.hidden-review {
  display: none !important;
}


