/* ===========================================================
   MINDFUL WALKING TOURS - MAIN CSS
   Modern, responsive design with Bootstrap 5 integration
   =========================================================== */

/* CSS Variables - Color Palette */
:root {
  /* Primary Colors */
  --primary-sage: #9CAF88;
  --primary-earth: #8B7355;
  --primary-sky: #87CEEB;
  --primary-forest: #355E3B;
  --primary-sunset: #FF7F50;
  
  /* Light Shades */
  --light-sage: #B8C9A8;
  --light-earth: #A6926F;
  --light-sky: #B5D7F0;
  --light-forest: #5C8A62;
  --light-sunset: #FF9F7A;
  
  /* Dark Shades */
  --dark-sage: #7A9263;
  --dark-earth: #6E5A42;
  --dark-sky: #5FA8CC;
  --dark-forest: #2A4A2E;
  --dark-sunset: #E65A2B;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Typography */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
  
  /* Borders */
  --border-radius: 0.375rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-forest);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  color: var(--primary-forest);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--dark-forest);
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-sage), var(--light-sage));
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sky), var(--light-sky)),
              url('XOM_assets/XOM_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-sage), transparent);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-forest), var(--dark-forest));
  border: none;
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-base);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-forest), var(--primary-forest));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-sunset), var(--light-sunset));
  border: none;
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-base);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--dark-sunset), var(--primary-sunset));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-sunset));
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  position: relative;
  overflow: hidden;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-sunset));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-sky), var(--white));
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-sky);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 3px solid var(--primary-forest);
  transform: scale(1.05);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-forest), var(--primary-sunset));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-sage), var(--white));
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
}

.team-member-role {
  color: var(--primary-forest);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  transition: var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-sage);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
  margin-top: 1rem;
}

.review-stars {
  color: var(--primary-sunset);
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.casestudy-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
  position: relative;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-item::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-forest), var(--dark-forest));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-section .container {
  counter-reset: process-counter;
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, var(--light-sky), var(--white));
}

.timeline-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  transition: var(--transition-base);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--primary-sage);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

/* Career Section */
.career-section {
  background: var(--white);
}

.career-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.career-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.career-role {
  color: var(--primary-forest);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-sage), var(--white));
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--dark-forest);
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition-base);
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

.blog-card-text {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--primary-forest);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.blog-card-link:hover {
  color: var(--dark-forest);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-sage);
  color: var(--dark-forest);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: var(--transition-base);
  font-weight: 600;
  position: relative;
}

.faq-question:hover {
  background: var(--primary-sage);
  color: var(--white);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-forest), var(--primary-forest));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer a:hover {
  color: var(--white);
}

.footer-copyright {
  background: var(--dark-forest);
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary-sage) !important; }
.text-secondary { color: var(--primary-earth) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }
.bg-secondary { background-color: var(--primary-earth) !important; }
.bg-gradient { background: linear-gradient(135deg, var(--primary-sage), var(--primary-sky)) !important; }

.mt-header { margin-top: 80px; }
.pt-header { padding-top: 80px; }



/* Image Sizing */
.img-hero {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}

.img-service {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.img-gallery {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.img-team {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.img-blog {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.img-feature {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.img-breadcrumb {
  width: 20px;
  height: 20px;
  object-fit: cover;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
