:root {
  --saffron: #f39c12;
  --saffron-dark: #d35400;
  --ghat-blue: #2980b9;
  --temple-brown: #8e44ad;
  --bg-dark: #121212;
  --bg-card: #1e1e1e;
  --text-light: #f5f6fa;
  --text-muted: #a4b0be;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  position: relative;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* --- NAV --- */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
  left: 0;
}

#navbar.scrolled, #navbar.menu-open {
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  margin-left: auto; /* Pushes the menu and the buttons to the right */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 40px; /* Gap between menu and buttons */
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--saffron);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1100;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-cta, .btn-auth {
  padding: 12px 28px;
  background: var(--saffron);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
}

.nav-cta:hover, .btn-auth:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-auth.logout {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #121212;
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1050;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li.mobile-only {
    display: block;
    margin-top: 20px;
  }

  .nav-links .nav-cta, .nav-links .btn-auth {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    margin-bottom: 25px;
  }

  .nav-actions {
    display: flex;
    gap: 8px;
  }

  .nav-cta {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .btn-auth {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 15px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-right {
    gap: 10px;
  }
  .nav-cta {
    display: none; 
  }
}

.mobile-only {
  display: none;
}

/* --- HERO --- */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1561359313-0639aad49ca6?q=80&w=2070&auto=format&fit=crop') center center / cover no-repeat;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  pointer-events: none; /* Let clicks pass to canvas if needed */
}

.hero-sub {
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title span {
  color: var(--ghat-blue);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary, .btn-ghost {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
    height: auto;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
  }
  .hero-title {
    font-size: 2.4rem;
    word-wrap: break-word;
  }
  .hero-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
  .hero-btns {
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  .hero-btns {
    padding: 0 10px;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  pointer-events: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* --- BIKES SECTION --- */
#bikes {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  color: var(--saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  #bikes, #seo-content, #faq-section {
    padding: 60px 15px;
  }
}

#filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

#bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.bike-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.bike-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.bike-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #2a2a2a;
}

.bike-info {
  padding: 20px;
}

.bike-type {
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.bike-name {
  font-size: 1.4rem;
  margin: 5px 0 15px;
}

.bike-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.bike-price span {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-view {
  width: 100%;
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-view:hover {
  background: var(--ghat-blue);
  border-color: var(--ghat-blue);
}

/* Shimmer Loading */
.shimmer {
  animation: shimmer 1.5s infinite linear;
  background: linear-gradient(to right, #2a2a2a 4%, #333 25%, #2a2a2a 36%);
  background-size: 1000px 100%;
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* --- 3D DIYA --- */
#diya-wrap {
  position: absolute;
  bottom: -50px;
  right: 20px;
  width: 150px;
  height: 150px;
  pointer-events: none;
}

#diya-canvas {
  width: 100%;
  height: 100%;
}

.diya-label {
  text-align: center;
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
}

/* --- CONTACT SECTION --- */
#contact-section {
  background: linear-gradient(to right, #1a1a1a, #121212);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--saffron);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--ghat-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-timing {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-timing span {
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #0a0a0a;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 5px;
}

/* --- FAQ SECTION --- */
#faq-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--saffron);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--saffron);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- MODAL --- */
#modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s;
}

#modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

#modal {
  background: var(--bg-card);
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: translateY(0);
  transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

#modal-overlay.hidden #modal {
  transform: translateY(50px);
}

#modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

#modal-close:hover {
  background: var(--saffron);
}

#modal-body {
  overflow-y: auto;
  padding: 0;
}

.modal-grid {
  display: block; /* Stacked layout */
}

.modal-img-wrap {
  position: relative;
}

.modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.modal-details {
  padding: 30px;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-price {
  font-size: 1.2rem;
  color: var(--saffron);
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-call {
  background: var(--ghat-blue);
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Booking Form */
.booking-form {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.booking-form h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.total-calc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.total-calc strong {
  font-size: 1.2rem;
  color: var(--saffron);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--saffron-dark);
}

/* --- FLOATING CONTACTS --- */
#float-contacts {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--ghat-blue);
}

/* --- TOAST --- */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--saffron);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 2000;
  transition: transform 0.3s;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
}

#toast.error {
  background: #e74c3c;
}

/* --- RESPONSIVE --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
    visibility: hidden;
  }
  .nav-links.active { transform: translateY(0); visibility: visible; }
  
  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; width: 100%; align-items: center; }
  .hero-btns a { width: 100%; text-align: center; max-width: 300px; }
  
  #bikes { padding: 60px 15px; }
  .section-title { font-size: 2rem; }
  
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  #contact-section { padding: 60px 15px; }
  
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img { height: 200px; min-height: auto; border-radius: 20px 20px 0 0; }
  #modal { border-radius: 20px; }
  .modal-details { padding: 20px; }
  .modal-title { font-size: 1.5rem; }
  .modal-actions { flex-direction: column; }
  .form-row { flex-direction: column; gap: 0; }
}


/* --- FOOTER (Global) --- */
footer {
  background: #0a0a0a;
  padding: 80px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--saffron);
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--saffron);
  padding-left: 5px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-5px);
  border-color: var(--saffron);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social-links {
    justify-content: center;
  }
}

/* --- Fix for Bike Names and Info in Fleet Grid --- */
.bike-name { color: #ffffff !important; }
.bike-info { color: #ffffff !important; }
.bike-type { color: var(--saffron) !important; }
.bike-price { color: #ffffff !important; }
.bike-price span { color: var(--text-muted) !important; }

/* --- FEATURES & HOW IT WORKS --- */
#features, #how-it-works {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 80px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--saffron);
  background: rgba(243, 156, 18, 0.05);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(243, 156, 18, 0.1);
  color: var(--saffron);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--saffron);
  color: #fff;
  transform: rotateY(360deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Steps */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  z-index: 0;
  font-family: 'Poppins', sans-serif;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content i {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 20px;
  display: block;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-arrow {
  color: rgba(255,255,255,0.1);
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  #features, #how-it-works {
    padding: 60px 20px;
    margin: 40px auto;
  }
  .steps-container {
    flex-direction: column;
    gap: 60px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

/* --- TESTIMONIALS --- */
#testimonials {
  padding: 100px 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Since we duplicated exactly half */
}

.testimonial-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.3s;
  flex: 0 0 350px; /* Fixed width for slider items */
  margin: 0 15px;
  white-space: normal;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--saffron);
  background: rgba(243, 156, 18, 0.05);
}

.testi-rating {
  color: var(--saffron);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}

.user-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
    flex: 0 0 300px;
  }
  .testimonial-card p {
    font-size: 1rem;
  }
}


