/* ====================================
   E-BIKE & HIGH-END CAR COMBO TOURS
   Main Stylesheet
   ==================================== */

:root {
  /* Primary Color Palette */
  --primary-sage: #9eb397;
  --primary-terracotta: #d4a574;
  --primary-lavender: #b8a8d6;
  --primary-coral: #e6a09a;
  --primary-cream: #f4f1e8;
  
  /* Light & Dark Shades */
  --sage-light: #c5d1bf;
  --sage-dark: #7a9070;
  --terracotta-light: #e8c4a0;
  --terracotta-dark: #b8935f;
  --lavender-light: #d1c8e6;
  --lavender-dark: #9a87c0;
  --coral-light: #f0c4bf;
  --coral-dark: #d88a82;
  --cream-light: #f9f7f1;
  --cream-dark: #e8e3d5;
  
  /* Neutral Colors */
  --text-dark: #2c3e50;
  --text-medium: #5d6d7e;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-sage) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 15px;
  transition: var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-sage);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Mobile Navigation Toggle */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  background: transparent;
  transition: var(--transition-base);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 25px;
  height: 2px;
  position: relative;
  background: var(--primary-sage);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary-sage);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 50%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--primary-lavender);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-lavender);
  top: 60%;
  right: 20%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--primary-coral);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Cards */
.service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  border: 1px solid var(--cream-light);
  height: 100%;
}

.service-card:hover, .feature-card:hover, .price-card:hover, .team-card:hover, .review-card:hover, .info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.card-features {
  list-style: none;
  padding: 0;
}

.card-features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  position: relative;
  padding-left: 1.5rem;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-sage);
  font-weight: bold;
}

/* Background Alternating Sections */
.bg-light {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 100%);
}

.bg-sage {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-light) 100%);
}

.bg-lavender {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--white) 100%);
}

/* Team Cards */
.team-card {
  text-align: center;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--sage-light);
  border: 5px solid var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-coral);
  font-weight: 500;
}

/* Reviews/Testimonials */
.review-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-light) 100%);
  text-align: center;
  position: relative;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.review-author {
  font-weight: 600;
  color: var(--primary-terracotta);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--cream-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(158, 179, 151, 0.25);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(158, 179, 151, 0.4);
}

/* FAQ Accordion */
.faq-accordion {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  background: linear-gradient(135deg, var(--cream-light), var(--white));
  padding: 1.5rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--sage-light), var(--cream-light));
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  aspect-ratio: 4/3;
  background: var(--sage-light);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact p {
  color: var(--cream-light);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-policies {
  margin: 2rem 0;
}

.footer-policies a {
  color: var(--sage-light);
  text-decoration: none;
  margin: 0 1rem;
  transition: var(--transition-base);
}

.footer-policies a:hover {
  color: var(--white);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: var(--cream-dark);
  font-size: 0.9rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-excerpt {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--cream-light);
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 8px;
  margin: 0 auto;
}

/* Swiper Slider Customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-terracotta);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* Responsive Media Queries will be in responsive.css */ 