/* Base Styles & Variables */
:root {
  --primary: #fe6601;
  --primary-dark: #e05a00;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #888888;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn i {
  margin-right: 8px;
  font-size: 1.1em;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background-color: var(--white);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
}

.app-buttons .btn {
  padding: 12px 20px;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(254, 102, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-card img {
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 60px auto;
  position: relative;
  max-width: 900px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--border);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 25px;
  border: 5px solid var(--light-gray);
}

.step h3 {
  margin-bottom: 15px;
}

.step p {
  color: var(--text-light);
}

.demo-image {
  max-width: 800px;
  margin: 60px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rating {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text);
  position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
}

.user {
  display: flex;
  align-items: center;
}

.user-info h4 {
  margin-bottom: 5px;
}

.user-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  font-style: normal;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background-color: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: left;
  background: linear-gradient(135deg, rgba(254, 102, 1, 0.9), rgba(254, 102, 1, 0.8));
  color: var(--white);
}

.cta h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  /* margin-left: auto; */
  margin-right: auto;
}

.cta .btn {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
  padding: 15px 30px;
}

.cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-col p {
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* About Roaders Section */
.about-roaders {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-roaders .container {
    max-width: 1000px;
}

.about-roaders h2 {
    color: var(--text);
    margin-bottom: 2rem;
    text-align: center;
}

.about-roaders .mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.services-list {
    margin: 2rem 0;
}

.services-list h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.services-list ul {
    list-style: none;
    padding-left: 1.5rem;
}

.services-list li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.services-list li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.commitment-text {
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .about-roaders {
        padding: 60px 0;
    }
    
    .about-roaders h2 {
        font-size: 1.8rem;
    }
    
    .about-roaders .mission-text {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
    gap: 50px;
  }
  
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .app-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
}

/* Vehicles Section */
.vehicles {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.vehicles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 102, 1, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.vehicles .container {
    position: relative;
    z-index: 1;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(254, 102, 1, 0.1);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(254, 102, 1, 0.3);
}

.vehicle-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 20px;
}

.transparent-bg {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.vehicle-card:hover .transparent-bg {
    transform: scale(1.05) translateY(-5px);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.vehicle-info {
    padding: 20px;
    border-top: 1px solid rgba(254, 102, 1, 0.1);
}

.vehicle-info h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.25rem;
}

.vehicle-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
    min-height: 40px;
}

.vehicle-specs {
    list-style: none;
    margin-top: 15px;
}

.vehicle-specs li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.vehicle-specs li i {
    color: var(--primary);
    margin-right: 10px;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .vehicles {
        padding: 80px 0;
    }
    
    .vehicle-image {
        height: 160px;
    }
    
    .transparent-bg {
        max-height: 120px;
    }
}

@media (max-width: 576px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
        gap: 25px;
    }
    
    .vehicle-card {
        max-width: 100%;
    }
}


.div-center{
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}