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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c5ce7;
}

.nav-brand i {
  margin-right: 0.5rem;
  color: #ff6b6b;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #6c5ce7;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
  padding: 4rem 5%;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-button {
  background: #00b894;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00a085;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  position: relative;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.map-container i {
  font-size: 4rem;
  color: white;
}

.location-pin {
  position: absolute;
  top: 20%;
  right: 30%;
  width: 20px;
  height: 20px;
  background: #ff6b6b;
  border-radius: 50%;
  border: 3px solid white;
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3436;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.feature-card p {
  color: #636e72;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 5rem 5%;
  background: white;
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3436;
}

.map-demo {
  max-width: 800px;
  margin: 0 auto;
}

.map-interface {
  background: #2d3436;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-header {
  background: #636e72;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.map-controls {
  display: flex;
  gap: 0.5rem;
}

.map-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.map-btn.active,
.map-btn:hover {
  background: #6c5ce7;
  border-color: #6c5ce7;
}

.map-content {
  height: 300px;
  position: relative;
  background: linear-gradient(45deg, #74b9ff, #0984e3);
}

.map-pins {
  position: relative;
  width: 100%;
  height: 100%;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff6b6b;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
}

.pin-1 { top: 20%; left: 30%; }
.pin-2 { top: 40%; left: 60%; }
.pin-3 { top: 60%; left: 25%; }
.pin-4 { top: 30%; left: 80%; }
.pin-5 { top: 70%; left: 70%; }

/* Pricing Section */
.pricing {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3436;
}

.pricing-cards {
  /* Fix: Changed from 100px to 100% for mobile base width */
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid #6c5ce7;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.2rem;
  color: #636e72;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  color: #6c5ce7;
}

.period {
  font-size: 1rem;
  color: #636e72;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  color: #636e72;
}

.features-list i {
  color: #00b894;
  margin-right: 0.5rem;
}

.pricing-btn {
  background: #6c5ce7;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: background 0.3s ease;
}

.pricing-btn:hover {
  background: #5f4fcf;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 5%;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3436;
}

.testimonial-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #6c5ce7;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  border-radius: 50%;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.author-info span {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3436;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  padding: 1.5rem;
  margin: 0;
  color: #2d3436;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-item h3:hover {
  background: #f8f9fa;
}

.faq-item i {
  color: #6c5ce7;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
}

.faq-answer.active {
  max-height: 200px;
  padding: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #636e72;
  line-height: 1.6;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* Contact Section */
.contact {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-btn {
  background: #00b894;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #00a085;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #2d3436;
  color: white;
  padding: 3rem 5% 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ddd;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #b2bec3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #6c5ce7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #636e72;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #6c5ce7;
}

.footer-brand i {
  margin-right: 0.5rem;
  color: #ff6b6b;
}

.footer-bottom p {
  color: #b2bec3;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 5%;
  }

  .features, .pricing, .testimonials, .faq, .contact {
    padding: 3rem 5%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .map-container {
    width: 250px;
    height: 250px;
  }

  .map-container i {
    font-size: 3rem;
  }
}

/* Make pricing section smaller on wide screens - organized media queries */
@media (min-width: 768px) {
  .pricing-cards {
    max-width: 400px;
  }
  
  .pricing-card {
    padding: 2rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .pricing h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .pricing-cards {
    max-width: 350px;
  }
  
  .pricing-card {
    max-width: 280px;
  }
}
