/* ==========================================
   1. INDEX / HOME PAGE STYLES
   ========================================== */
/* Hero Section */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 30%, rgba(8, 217, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 94, 0, 0.1) 0%, transparent 50%),
              linear-gradient(rgba(3, 7, 18, 0.55) 0%, rgba(3, 7, 18, 0.85) 100%),
              url('../../banner/banner.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #FFFFFF;
  padding-top: 100px;
  overflow: hidden;
}

.home-hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .home-hero {
    min-height: auto;
    padding-top: 170px;
    padding-bottom: 6rem;
    background-attachment: scroll;
    background-position: center center !important;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: 155px;
  }
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(8, 217, 255, 0.1);
  border: 1px solid rgba(8, 217, 255, 0.25);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(8, 217, 255, 0.05);
}

.home-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.75rem;
  color: #FFFFFF;
  font-weight: 700;
}
.home-hero-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero-title span {
  display: block;
}

@media (max-width: 768px) {
  .home-hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }
}

.home-hero-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.home-hero-actions .btn-secondary {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.home-hero-actions .btn-secondary:hover {
  background: #FFFFFF !important;
  color: #030712 !important;
  border-color: #FFFFFF !important;
}
@media (max-width: 480px) {
  .home-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
}
/* Glassmorphic booking card on hero */
.home-hero-form {
  padding: 2.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 2px solid var(--secondary) !important;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #0F172A !important;
}

.home-hero-form h3 {
  color: #0F172A !important;
  background: none !important;
  -webkit-text-fill-color: #0F172A !important;
  font-weight: var(--font-bold);
}

.home-hero-form p {
  color: #475569 !important;
}

.home-hero-form .form-label {
  color: #0F172A !important;
  font-weight: 600;
}

.home-hero-form .form-control {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
}

.home-hero-form .form-control::placeholder {
  color: #94A3B8 !important;
}

.home-hero-form .form-control:focus {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2) !important;
}

.form-bike-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem auto;
  color: var(--secondary);
  animation: float-bike 3s ease-in-out infinite;
}

.form-bike-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

@keyframes float-bike {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 1024px) {
  .home-hero-form {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Counters Block */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
}
@media (max-width: 520px) {
  .counter-grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}

.counter-card {
  padding: 2rem;
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: var(--font-bold);
  color: var(--text-title);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
}

/* About Intro grid */
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.home-about-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
  position: relative;
}

@media (max-width: 640px) {
  .home-about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .home-about-img-box-1, .home-about-img-box-2 {
    grid-column: auto;
    grid-row: auto;
    width: 48%;
    height: 200px;
    z-index: 1;
  }
}

.home-about-img-box {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.home-about-img-box-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 2;
}

.home-about-img-box-2 {
  grid-column: 5 / 13;
  grid-row: 5 / 13;
  z-index: 1;
}

.home-about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.home-about-img-box:hover img {
  transform: scale(1.05);
}

.home-about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Why Choose Us */
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-why-grid {
    grid-template-columns: 1fr;
  }
}

.home-why-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-why-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--secondary-rgb), 0.05);
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all var(--transition-normal);
}
.home-why-card:hover .home-why-icon-box {
  background: var(--secondary);
  color: #0F172A;
  box-shadow: var(--shadow-neon);
}

.home-why-icon-box svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.home-why-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.home-why-desc {
  font-size: 0.875rem;
}

/* Scrolling Brand Marquee */
.brand-marquee {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.brand-marquee::before, .brand-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-card), transparent);
}
.brand-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-card), transparent);
}

.brand-marquee-track {
  display: flex;
  gap: 6rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 3rem)); }
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  color: var(--text-title);
  opacity: 1;
}

.brand-logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
}

/* Service Process (Timeline) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.process-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  margin: 0 auto 1.5rem auto;
  transition: all var(--transition-normal);
  z-index: 2;
  position: relative;
}
.process-step-item:hover .process-step-num {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--shadow-neon);
  transform: scale(1.1);
}

.process-step-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.875rem;
  max-width: 200px;
  margin: 0 auto;
}

/* Timeline link lines on Desktop */
@media (min-width: 1025px) {
  .process-grid::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
  }
}

/* Testimonial slider layouts */
.testimonial-slider {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.testimonial-wrapper {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
}

.testimonial-card {
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: var(--shadow-neon);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-title);
  max-width: 700px;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-author-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-bike {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.testimonial-dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: 5px;
}

/* Home Map & contact blocks */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.map-wrapper {
  height: 420px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

html.dark-mode .map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) grayscale(80%);
}

.home-contact-info-panel {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* ==========================================
   2. ABOUT PAGE STYLES
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
@media (max-width: 640px) {
  .about-timeline::after {
    left: 20px;
  }
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-card);
  border: 3px solid var(--secondary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: all var(--transition-fast);
}

.timeline-item-left {
  left: 0;
}

.timeline-item-right {
  left: 50%;
}

.timeline-item-right::after {
  left: -8px;
}

@media (max-width: 640px) {
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-item-left, .timeline-item-right {
    left: 0;
  }
  .timeline-item-left::after, .timeline-item-right::after {
    left: 12px;
  }
}

.timeline-card {
  padding: 1.5rem 2rem;
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  overflow: hidden;
}

.team-avatar-box {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.team-card:hover .team-avatar-box img {
  transform: scale(1.03);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: var(--font-bold);
}

/* ==========================================
   3. SERVICES PAGE STYLES
   ========================================== */
.services-search-area {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  display: flex;
  gap: 1rem;
}
@media (max-width: 520px) {
  .services-search-area {
    flex-direction: column;
  }
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--text-body);
  fill: none;
}

.search-input-field {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-title);
  box-shadow: var(--shadow-sm);
}

.service-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.service-tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-body);
  font-weight: var(--font-bold);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--secondary);
  color: #030712;
  border-color: var(--secondary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}
html.dark-mode .service-tab-btn:hover, html.dark-mode .service-tab-btn.active {
  background: var(--secondary);
  color: #030712;
  border-color: var(--secondary);
  box-shadow: var(--shadow-neon);
}

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
@media (max-width: 1024px) {
  .services-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid-main {
    grid-template-columns: 1fr;
  }
}

.service-card-item {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

/* Card Header Image Styling */
.service-card-img-box {
  width: calc(100% + 5rem);
  height: 180px;
  overflow: hidden;
  margin: -2.5rem -2.5rem 1rem -2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.service-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card-item:hover .service-card-img-box img {
  transform: scale(1.08);
}

.service-card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--secondary-rgb), 0.05);
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.service-card-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.875rem;
  flex-grow: 1;
}

.service-card-price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  font-size: 0.875rem;
}

.service-card-price {
  font-weight: var(--font-bold);
  color: var(--text-title);
  font-size: 1.125rem;
}

/* Doorstep Section */
.doorstep-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .doorstep-panel-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.doorstep-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.doorstep-bullet-item {
  display: flex;
  gap: 1rem;
}

.doorstep-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.1);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doorstep-bullet-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
}

.doorstep-bullet-title {
  font-weight: var(--font-bold);
  color: var(--text-title);
  margin-bottom: 0.15rem;
}

.doorstep-bullet-desc {
  font-size: 0.875rem;
}

/* ==========================================
   4. PRICING PAGE STYLES
   ========================================== */
.pricing-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
@media (max-width: 992px) {
  .pricing-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .pricing-pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 1.5rem;
  }
}

.pricing-pkg-card {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.pricing-pkg-card.popular {
  border-color: var(--secondary) !important;
  box-shadow: var(--shadow-xl), var(--shadow-neon) !important;
  transform: translateY(-12px);
}
.pricing-pkg-card.popular::after {
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.8), rgba(var(--accent-rgb), 0.3)) !important;
}
@media (max-width: 1024px) {
  .pricing-pkg-card.popular {
    transform: none;
  }
}

.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: var(--secondary);
  color: #0F172A;
  font-weight: var(--font-bold);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.pkg-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pkg-subtitle {
  font-size: 0.8rem;
  color: var(--text-body);
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pkg-price {
  font-size: 3rem;
  font-weight: var(--font-bold);
  color: var(--text-title);
  line-height: 1;
}

.pkg-price-suffix {
  font-size: 0.875rem;
  color: var(--text-body);
}

.pkg-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  flex-grow: 1;
}

.pkg-feature-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pkg-feature-icon {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-btn {
  width: 100%;
}

/* Cost Estimator Widget layout */
.estimator-layout-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
}

@media (max-width: 640px) {
  .estimator-layout-box {
    padding: 1.5rem;
  }
}

.estimator-inner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

@media (max-width: 768px) {
  .estimator-inner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.estimator-inputs-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.estimator-section-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.estimator-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .estimator-checkbox-group {
    grid-template-columns: 1fr;
  }
}

.estimator-checkbox-label {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  background: var(--bg-main);
  align-items: center;
}

.estimator-checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.estimator-checkbox-label:hover {
  border-color: rgba(var(--secondary-rgb), 0.4);
  background: var(--bg-card);
}

/* Checked styling via JS trigger or general sibling */
.estimator-checkbox-label input:checked + span {
  font-weight: var(--font-bold);
  color: var(--text-title);
}

.estimator-checkbox-label input:checked {
  outline: none;
}

.estimator-outcome-card {
  padding: 2.5rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.estimator-outcome-row {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.estimator-outcome-row:last-of-type {
  border: none;
}

.estimator-price-value {
  font-size: 3.5rem;
  font-weight: var(--font-bold);
  color: var(--text-title);
  line-height: 1;
  margin: 0.5rem 0;
}

.estimator-dur-value {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--secondary);
}

/* ==========================================
   5. GALLERY PAGE STYLES
   ========================================== */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.gallery-filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-body);
  font-weight: var(--font-bold);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--primary);
  color: var(--bg-main);
  border-color: var(--primary);
}
html.dark-mode .gallery-filter-btn:hover, html.dark-mode .gallery-filter-btn.active {
  background: var(--secondary);
  color: #0F172A;
  border-color: var(--secondary);
  box-shadow: var(--shadow-neon);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity var(--transition-normal);
  will-change: transform, opacity;
  height: 320px;
}

.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item-link:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-item-link:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  color: #FFFFFF;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.gallery-item-overlay p {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
}

/* Drag Before / After comparison slider */
.before-after-outer {
  max-width: 800px;
  margin: 0 auto;
}

.before-after-slider {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  cursor: ew-resize;
}

@media (max-width: 640px) {
  .before-after-slider {
    height: 320px;
  }
}

.after-image, .before-image {
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.after-image img, .before-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* starting point */
  overflow: hidden;
  border-right: 1px solid transparent;
  z-index: 10;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  background: #FFFFFF;
  margin-left: -2px;
  z-index: 20;
}

.slider-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
}

.slider-handle-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.slider-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-sm);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
  user-select: none;
  z-index: 15;
}

.label-before {
  left: 1.5rem;
}

.label-after {
  right: 1.5rem;
}

/* Lightbox Modal overlay styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lightbox-close-btn:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.lightbox-prev-btn, .lightbox-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #FFFFFF;
  cursor: pointer;
  padding: 1.5rem;
  user-select: none;
  transition: all var(--transition-fast);
  z-index: 3010;
}
.lightbox-prev-btn:hover, .lightbox-next-btn:hover {
  color: var(--secondary);
}
.lightbox-prev-btn { left: 1.5rem; }
.lightbox-next-btn { right: 1.5rem; }

@media (max-width: 640px) {
  .lightbox-prev-btn, .lightbox-next-btn {
    padding: 0.5rem;
    font-size: 1.75rem;
  }
  .lightbox-prev-btn { left: 0.5rem; }
  .lightbox-next-btn { right: 0.5rem; }
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease-in-out;
}

.lightbox-caption {
  text-align: center;
  color: #FFFFFF;
}

.lightbox-caption h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.lightbox-caption p {
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: var(--font-bold);
  letter-spacing: 0.5px;
}

/* ==========================================
   6. BLOG PAGE STYLES
   ========================================== */
.blog-search-bar {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  display: flex;
  gap: 1rem;
}
@media (max-width: 520px) {
  .blog-search-bar {
    flex-direction: column;
  }
}

.blog-tag-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.blog-tag-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-body);
  font-weight: var(--font-bold);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.blog-tag-btn:hover, .blog-tag-btn.active {
  background: var(--primary);
  color: var(--bg-main);
  border-color: var(--primary);
}
html.dark-mode .blog-tag-btn:hover, html.dark-mode .blog-tag-btn.active {
  background: var(--secondary);
  color: #0F172A;
  border-color: var(--secondary);
  box-shadow: var(--shadow-neon);
}

.blog-featured-card {
  padding: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 768px) {
  .blog-featured-grid {
    grid-template-columns: 1fr;
  }
}

.blog-featured-img-box {
  height: 400px;
}

.blog-featured-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

@media (max-width: 1024px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card-item {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-img-box {
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card-item:hover .blog-img-box img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: var(--font-bold);
  color: var(--text-body);
}

.blog-title {
  font-size: 1.25rem;
}

.blog-excerpt {
  font-size: 0.875rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-read-more {
  font-weight: var(--font-bold);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================
   7. FAQ PAGE STYLES
   ========================================== */
.faq-search-box {
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.faq-layout-narrow {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.faq-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(var(--secondary-rgb), 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: var(--bg-card);
  cursor: pointer;
}

.faq-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
  padding-right: 1.5rem;
}

.faq-header-icon {
  width: 20px;
  height: 20px;
  stroke: var(--text-body);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-header-icon {
  transform: rotate(180deg);
  stroke: var(--secondary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: var(--bg-card);
  transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1), padding var(--transition-normal);
}

.faq-body p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================
   8. CONTACT PAGE STYLES
   ========================================== */
.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--secondary-rgb), 0.05);
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .contact-body-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form-panel {
  padding: 3rem;
}

@media (max-width: 640px) {
  .contact-form-panel {
    padding: 1.5rem;
  }
}

.contact-map-panel {
  height: 100%;
  min-height: 400px;
}

/* ==========================================
   9. BOOK SERVICE PAGE WIZARD STYLES
   ========================================== */
.wizard-box {
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.wizard-header-progress {
  padding: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.wizard-progress-bar::after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--border-color);
  top: 20px;
  left: 5%;
  right: 5%;
  z-index: 1;
}

.wizard-progress-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 20%;
  z-index: 2;
  position: relative;
  text-align: center;
}

.wizard-progress-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.wizard-progress-bar-item.active .wizard-progress-step-num {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #0F172A;
  box-shadow: var(--shadow-neon);
}

.wizard-progress-bar-item.completed .wizard-progress-step-num {
  border-color: #25D366;
  background: #25D366;
  color: #FFFFFF;
}

.wizard-progress-step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--font-bold);
  color: var(--text-body);
}
.wizard-progress-bar-item.active .wizard-progress-step-label {
  color: var(--text-title);
}

@media (max-width: 640px) {
  .wizard-progress-step-label {
    display: none;
  }
}

.wizard-body-panel {
  padding: 3rem;
}

@media (max-width: 640px) {
  .wizard-body-panel {
    padding: 1.5rem;
  }
}

.wizard-step-panel {
  display: none;
}
.wizard-step-panel.active {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: wizard-fade-in 0.4s ease-out;
}

@keyframes wizard-fade-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.wizard-footer-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* Date calendar & slot design */
.wizard-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 640px) {
  .wizard-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wizard-slot-btn {
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-main);
  color: var(--text-body);
  text-align: center;
  font-weight: var(--font-bold);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.wizard-slot-btn:hover {
  border-color: rgba(var(--secondary-rgb), 0.4);
}

.wizard-slot-btn.selected {
  border-color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.05);
  color: var(--secondary);
}

/* Wizard summary styles */
.wizard-success-screen {
  display: none;
  padding: 4rem 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wizard-success-screen.active {
  display: flex;
}

.wizard-summary-bill {
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.summary-bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
}
.summary-bill-row:last-of-type {
  border: none;
}

.summary-bill-row strong {
  color: var(--text-title);
}

/* ==========================================
   10. PRIVACY & TERMS PAGE STYLES
   ========================================== */
.legal-layout-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.legal-sidebar-menu {
  position: sticky;
  top: 110px;
  height: fit-content;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .legal-sidebar-menu {
    position: static;
  }
}

.legal-sidebar-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition-fast);
}
.legal-sidebar-link:hover, .legal-sidebar-link.active {
  color: var(--secondary);
  padding-left: 5px;
}

.legal-text-content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.legal-text-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.legal-text-section p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ==========================================
   11. 404 ERROR PAGE STYLES
   ========================================== */
.error-page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 50px 2rem;
  background: radial-gradient(circle at center, rgba(var(--secondary-rgb), 0.08) 0%, rgba(15, 23, 42, 0) 60%),
              linear-gradient(135deg, #0F172A 0%, #020617 100%);
  color: #FFFFFF;
}

.error-page-card {
  max-width: 550px;
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.error-code {
  font-size: 8rem;
  font-weight: var(--font-bold);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--secondary);
  text-shadow: var(--shadow-neon);
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.error-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  max-width: 400px;
}

.error-bike-anim {
  width: 120px;
  height: 120px;
  color: var(--secondary);
  position: relative;
  margin-bottom: 1rem;
  animation: bike-shake 0.3s ease infinite alternate;
  transform-origin: bottom center;
}

@keyframes bike-shake {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-3px) rotate(1.5deg); }
}

.error-bike-anim svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.rev-exhaust-smoke {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.error-bike-anim.revving {
  animation: bike-rev 0.15s ease infinite alternate;
}

.error-bike-anim.revving .rev-exhaust-smoke {
  animation: smoke-drift 0.6s ease-out infinite;
}

@keyframes bike-rev {
  0% { transform: translateY(0) scaleY(1) rotate(0); }
  100% { transform: translateY(-5px) scaleY(0.96) rotate(-2deg); }
}

@keyframes smoke-drift {
  0% { opacity: 0.8; transform: translate(0, 0) scale(0.6); }
  50% { opacity: 0.4; }
  100% { opacity: 0; transform: translate(40px, -20px) scale(2); }
}

/* ==========================================
   12. EXTRA MOBILE VIEWPORT OPTIMIZATIONS (<= 480px)
   ========================================== */
@media (max-width: 480px) {
  /* Global spacing and paddings overrides */
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  /* Text Sizes fluid adaptations */
  .home-hero-title {
    font-size: 2.15rem;
    letter-spacing: -1px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  /* Cost Estimator adjustments */
  .estimator-price-value {
    font-size: 2.5rem;
  }
  
  /* 404 landing page adjustments */
  .error-code {
    font-size: 5rem;
  }
  
  /* Form panel paddings checks */
  .home-hero-form,
  .contact-form-panel,
  .estimator-layout-box,
  .wizard-body-panel {
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
  }
  
  /* Checkboxes layout check */
  .estimator-checkbox-group {
    grid-template-columns: 1fr;
  }
  
  /* Adjust margins for mobile view */
  .counter-grid {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  
  .counter-card {
    padding: 1.25rem;
  }
  
  .counter-number {
    font-size: 2.25rem;
  }
  
  .home-why-card,
  .service-card-item,
  .pricing-pkg-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .home-contact-info-panel {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .team-avatar-box {
    height: 250px;
  }
  
  .blog-featured-content {
    padding: 1.5rem;
  }
  
  .wizard-header-progress {
    padding: 1.5rem;
  }
  
  .wizard-slots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
  .nav-actions {
    gap: 0.75rem;
  }
  .theme-toggle-btn {
    width: 36px;
    height: 36px;
  }
  .floating-actions-container {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ==========================================
   13. MOBILE TEXT ALIGNMENT & INLINE FONT SCALE OVERRIDES
   ========================================== */
@media (max-width: 1024px) {
  /* Center home about details when stacked */
  .home-about-content {
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .home-contact-info-panel {
    text-align: center;
    align-items: center;
  }
  
  .home-contact-info-panel > div {
    align-items: center !important;
  }
  
  .home-contact-info-panel > div > div {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  /* Override inline heading font-sizes on mobile view */
  h2[style*="font-size"] {
    font-size: 1.85rem !important;
  }
  h1[style*="font-size"] {
    font-size: 2.25rem !important;
  }
  h3[style*="font-size"] {
    font-size: 1.35rem !important;
  }

  /* Center about page intro details when stacked */
  .about-intro-grid {
    text-align: center;
  }
  .about-intro-grid .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Center doorstep section details when stacked */
  .doorstep-panel-grid {
    text-align: center;
  }
  .doorstep-panel-grid .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .doorstep-bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 450px;
    margin: 2rem auto 0 auto;
  }
  
  /* Center blog featured post when stacked */
  .blog-featured-content {
    text-align: center;
    align-items: center;
  }
  .blog-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  h2[style*="font-size"] {
    font-size: 1.65rem !important;
  }
  h1[style*="font-size"] {
    font-size: 2.05rem !important;
  }
}

/* Decorative section divider line */
.heading-divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 1.25rem auto;
  border-radius: 2px;
}

/* Custom services section wrapper background styling */
.services-section-wrapper {
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(var(--secondary-rgb), 0.04) 50%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}


