.elementor-612 .elementor-element.elementor-element-851363a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-612 .elementor-element.elementor-element-851363a:not(.elementor-motion-effects-element-type-background), .elementor-612 .elementor-element.elementor-element-851363a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A0A0A;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-78f0fed */#main-footer {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #111 0%, #050505 100%);
  color: #aaa;
  padding: 90px 40px 30px;
  position: relative;
  overflow: hidden;
}

/* Subtle Top Glow Line */
#main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF6600, transparent);
  transform: translateX(-50%);
  opacity: 0.6;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Headings & Text */
.footer-col h3 { color: white; margin-bottom: 15px; font-size: 18px; }
.footer-logo { font-size: 26px; color: white; margin-bottom: 10px; font-weight: 600;}
.footer-col p { font-size: 14px; line-height: 1.6; }

/* Navigation Links */
.footer-col a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-col a:hover { color: #FF6600; transform: translateX(6px); }

/* --- 1. REAL-TIME AVAILABILITY INDICATOR --- */
.live-status {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #00ff66; /* Neon Green */
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px #00ff66;
  animation: pulse-dot 1.5s infinite ease-in-out;
}

.status-text { font-size: 13px; color: #ddd; }
.status-text strong { color: white; font-weight: 600; }

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; box-shadow: 0 0 18px #00ff66; }
}

/* --- FORM --- */
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input {
  padding: 11px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.3s;
}
.footer-form input:focus { border-color: #FF6600; box-shadow: 0 0 8px rgba(255,102,0,0.4); }

.footer-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #FF6600;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}
.footer-form button:hover { background: #ff7a1a; box-shadow: 0 0 15px rgba(255,102,0,0.6); }

/* --- 2. ANIMATED BIKE SILHOUETTE --- */
.footer-bike-animation {
  max-width: 600px;
  margin: 50px auto 10px auto;
  text-align: center;
}

.bike-svg { width: 100%; height: auto; overflow: visible; }

.bike-svg .wheel {
  fill: none;
  stroke: #FF6600;
  stroke-width: 6;
  stroke-dasharray: 12 6; /* Creates spoke illusion */
  transform-origin: center;
  animation: spin-wheel 6s linear infinite;
}

.bike-svg .wheel:nth-child(1) { transform-origin: 160px 90px; }
.bike-svg .wheel:nth-child(2) { transform-origin: 340px 90px; }

.bike-svg .frame {
  fill: none;
  stroke: white;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.bike-body {
  animation: bike-cruise 4s ease-in-out infinite alternate;
}

@keyframes spin-wheel { 100% { transform: rotate(360deg); } }
@keyframes bike-cruise {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-3px) rotate(0.5deg); }
}

/* --- 3. SCROLL REVEAL ANIMATION STARTING STATE --- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.reveal-item.active { opacity: 1; transform: translateY(0); }

/* Delay cascade effect for columns */
.footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-col:nth-child(3) { transition-delay: 0.3s; }
.footer-col:nth-child(4) { transition-delay: 0.4s; }
.footer-bike-animation { transition-delay: 0.5s; }
.footer-bottom { transition-delay: 0.6s; }

/* Bottom Bar */
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; }
.socials a { margin-left: 15px; color: #777; text-decoration: none; transition: 0.3s; }
.socials a:hover { color: #FF6600; text-shadow: 0 0 8px rgba(255,102,0,0.6); }

/* Responsive */
@media (max-width: 900px) { .footer-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .socials a { margin: 0 8px; }
  .footer-bike-animation { display: none; } /* Hide SVG on small screens for cleanliness */
}



.socials {
  display: flex;
  align-items: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  margin-left: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #aaa;
  transition: 0.3s;
}

/* hover glow */
.social-icon:hover {
  background: rgba(255,102,0,0.1);
  border-color: #FF6600;

  box-shadow: 0 0 15px rgba(255,102,0,0.6);
  transform: translateY(-4px) scale(1.05);
}

.social-icon:hover svg {
  fill: #FF6600;
}

/* === BIKE ENTRANCE ANIMATION === */
.footer-bike-animation {
  max-width: 600px;
  margin: 50px auto 10px auto;
  text-align: center;

  opacity: 0;
  transform: translateX(-120px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

/* when visible */
.footer-bike-animation.active {
  opacity: 1;
  transform: translateX(0);
}

/* === BIKE GLOW TRAIL === */
.footer-bike-animation::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  width: 300px;
  height: 20px;

  background: radial-gradient(circle, rgba(255,102,0,0.4) 0%, transparent 70%);
  filter: blur(10px);

  opacity: 0;
  transition: opacity 1s ease;
}

.footer-bike-animation.active::after {
  opacity: 1;
}

/* === ENHANCED BIKE GLOW === */
.bike-svg .frame {
  stroke: #ffffff;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.bike-svg .wheel {
  stroke: #FF6600;
  filter: drop-shadow(0 0 6px rgba(255,102,0,0.6));
}

/* smoother floating motion */
.bike-body {
  animation: bike-cruise 3s ease-in-out infinite alternate;
}

@keyframes bike-cruise {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-4px); }
}

.footer-socials {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}/* End custom CSS */