/* style.css for Bhogabir Location Page */
:root {
  --primary-color: #FFC107; /* Yellow */
  --secondary-color: #1a1a1a; /* Black */
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --white: #ffffff;
  --text-color: #4a4a4a;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

/* Local Navbar overrides are removed to use global styles */
.navbar-spacer { height: 80px; }

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.features-list li i {
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 10;
}

.hero-buttons a {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Trust Section */
.trust-section {
  display: flex;
  justify-content: space-around;
  padding: 40px 5%;
  background: var(--secondary-color);
  color: var(--white);
}

.trust-card {
  text-align: center;
}

.trust-card h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 5px;
}



/* Features */
.features-section {
  padding: 80px 5%;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid #eee;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Local Content */
.local-content {
  padding: 60px 5%;
  background: var(--light-gray);
  border-radius: 20px;
  margin: 0 5%;
}

.local-content p {
  margin-bottom: 15px;
}

/* Links & Tags */
.tags-section {
  padding: 60px 5%;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  padding: 8px 16px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Pricing Table */
.pricing-section {
  padding: 80px 5%;
  background: var(--secondary-color);
  color: var(--white);
}

.pricing-section h2 {
  color: var(--white);
  text-align: center;
}

.pricing-table {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  color: var(--text-color);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-bike {
  font-weight: 600;
  color: var(--secondary-color);
}

.pricing-amount {
  font-weight: 700;
  color: var(--primary-color);
}

/* Reviews */
.reviews-section {
  padding: 80px 5%;
  background: var(--light-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.reviewer {
  font-weight: 600;
  margin-top: 15px;
  color: var(--secondary-color);
}

/* FAQ */
.faq-section {
  padding: 80px 5%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}

.faq-q {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
  margin: 0 5% 80px;
  padding: 60px 5%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%);
  border-radius: var(--border-radius);
  text-align: center;
  color: var(--secondary-color);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Local Footer overrides are removed to use global styles */

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-links {
    display: none;
  }
  
  .trust-section {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Mobile Sticky CTA */
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .mobile-cta .btn-call {
    background: var(--secondary-color);
    color: var(--white);
  }
  
  .mobile-cta .btn-book {
    background: var(--primary-color);
    color: var(--secondary-color);
  }
  
  body {
    padding-bottom: 60px; /* Space for sticky CTA */
  }
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}


/* --- Fix for Bike Names and Info in Fleet Grid --- */
.bike-name { color: #ffffff !important; }
.bike-info { color: #ffffff !important; }
.bike-type { color: var(--primary-color) !important; }
.bike-price { color: #ffffff !important; }
.bike-price span { color: #cccccc !important; }
