/* ===============================
   Mindful Walking Tours - Main CSS
   =============================== */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Custom Color Palette */
:root {
  /* Primary Colors */
  --primary-color: #6faa7f;
  --secondary-color: #a8d5ba;
  --accent-color: #4a7c59;
  --highlight-color: #e8f5e8;
  --contrast-color: #2d4a35;

  /* Light/Dark Shades */
  --light-primary: #b8e6c1;
  --dark-primary: #4a7c59;
  --light-secondary: #d4f0e0;
  --dark-secondary: #7fa896;
  --light-accent: #6faa7f;
  --dark-accent: #3a5f42;

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;

  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  --highlight-gradient: linear-gradient(135deg, var(--highlight-color), var(--light-primary));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

html {
  scroll-behavior: smooth;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Header Styles */
.navbar {
  background: var(--primary-gradient);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--highlight-color) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styles */
.btn-primary {
  background: var(--accent-gradient);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.card-header {
  background: var(--highlight-gradient);
  border-bottom: none;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Services Grid - Now using Bootstrap 5 grid */

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Features Section - Now using Bootstrap 5 grid */

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  transition: background 0.3s ease;
}

.feature-item:hover {
  background: var(--highlight-color);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Team Section - Now using Bootstrap 5 grid */

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-color);
}

.team-member h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--gray);
  font-weight: 500;
}

/* Testimonials */
.testimonials-carousel {
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 1rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--accent-color);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  background: var(--light-primary);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-color);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--secondary-color);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 15px;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--light-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(111, 170, 127, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--dark-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-primary);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--white);
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  color: var(--light-primary);
}

.footer-bottom {
  border-top: 1px solid var(--primary-color);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px; /* Account for fixed navbar */
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
  opacity: 1;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .read-more:hover {
  color: var(--accent-color);
}

/* Price Plans */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-plan {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-plan.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.price-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
}

.price-plan:hover {
  transform: translateY(-5px);
}

.price-plan .featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price-plan h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.price-plan .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-plan .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.price-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-primary);
}

.price-plan li:last-child {
  border-bottom: none;
}

.price-plan li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }
.process-step:nth-child(5)::before { content: '5'; }

.process-step h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.process-step p {
  color: var(--gray);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 2rem;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -20px;
  border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -20px;
  border-right-color: var(--white);
}

.timeline-content h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Case Studies */
.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-study {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
}

.case-study img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-study-content {
  padding: 2rem;
}

.case-study h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.case-study p {
  color: var(--gray);
}

/* Career Section */
.career-positions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.career-position {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.career-position:hover {
  transform: translateY(-5px);
}

.career-position h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.career-position .role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-position p {
  color: var(--gray);
}

/* Core Info - Now using Bootstrap 5 grid */

.core-info-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.core-info-item h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.core-info-item p {
  color: var(--gray);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.scroll-to-top:focus {
  outline: 3px solid var(--highlight-color);
  outline-offset: 2px;
}

/* Testimonial Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-primary);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--primary-color);
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background: rgba(111, 170, 127, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Feature Box for Contact Page */
.feature-box {
  text-align: center;
  padding: 1rem;
}

.feature-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.feature-box h6 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.feature-box p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light { background-color: var(--light-gray) !important; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--light-gray);
  border-radius: 15px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3rem;
    padding-right: 0;
  }
  
  .timeline-content::before {
    left: -20px !important;
    border-right-color: var(--white) !important;
    border-left-color: transparent !important;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .price-plan.featured {
    transform: none;
  }
  
  .price-plan.featured:hover {
    transform: translateY(-5px);
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
