/**
 * company.css - Main stylesheet for Lala's Ceylon Trails company pages
 * Includes styles for about-us, leadership, our-story, testimonials, services, and sustainability pages
 */

/* =============================================
   GENERAL STYLES
   ============================================= */
   body {
    color: #333;
    font-family: 'Open Sans', sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
  }
  
  /* Default link colors */
  a {
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--accent-gold);
    text-decoration: none;
  }
  
  /* Section padding */
  .py-custom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  /* Content loading indicators */
  .content-loading {
    text-align: center;
    padding: 30px;
  }
  
  .content-loading .spinner {
    margin: 0 auto 15px;
  }
  
  /* =============================================
     HERO SECTIONS
     ============================================= */
  .about-hero,
  .leadership-hero,
  .story-hero,
  .sustainability-hero,
  .services-hero,
  .achievements-hero,
  .testimonial-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  /* Hero section text */
  .about-hero h1, .about-hero p,
  .leadership-hero h1, .leadership-hero p,
  .story-hero h1, .story-hero p,
  .sustainability-hero h1, .sustainability-hero p,
  .services-hero h1, .services-hero p,
  .achievements-hero h1, .achievements-hero p,
  .testimonial-hero h1, .testimonial-hero p {
    color: #fff;
    position: relative;
    z-index: 2;
  }
  
  /* Hero section backgrounds */
  .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/heritage-srilanka-main-slider.jpg');
  }
  
  .leadership-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/kandy-parade-srilanka-main-slider.jpg');
  }
  
  .story-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/heritage-pilgrimage-srilanka-main-slider.jpg');
  }
  
  .services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/luxury-beach-sri-lanka.jpg');
  }
  
  .sustainability-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/eco-sri-lanka-slider.jpg');
  }
  
  .achievements-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/gem-city-srilanka-main-slider.jpg');
  }
  
  .testimonial-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slider/adventure-excursion-sri-lanka.jpg');
  }
  
  /* =============================================
     VISION AND MISSION CARDS
     ============================================= */
  .vision-mission-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
  }
  
  .vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .vision-mission-card .card-body {
    padding: 30px;
  }
  
  .vision-mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: rgba(13, 110, 253, 0.1);
  }
  
  .vision-mission-icon i {
    color: #0d6efd;
  }
  
  /* =============================================
     STATISTICS CARDS
     ============================================= */
  .stat-card {
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0;
    color: #0d6efd;
  }
  
  /* =============================================
     TEAM MEMBER STYLES
     ============================================= */
  .team-member {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid rgba(13, 110, 253, 0.1);
  }
  
  .team-member h4 {
    margin-bottom: 10px;
    color: #333;
  }
  
  .team-member p {
    color: #666;
  }
  
  /* Founder section styles */
  .founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .founder-info h3 {
    color: #333;
    margin-bottom: 10px;
  }
  
  .founder-info p {
    color: #666;
    line-height: 1.7;
  }
  
  /* Team structure card */
  .team-structure-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
  }
  
  .team-structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .team-structure-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .team-structure-icon i {
    font-size: 2rem;
    color: #0d6efd;
  }
  
  .team-highlights {
    list-style: none;
    padding-left: 0;
  }
  
  .team-highlights li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
  }
  
  .team-highlights li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #0d6efd;
  }
  
  /* =============================================
     TESTIMONIAL STYLES
     ============================================= */
  .testimonial-card {
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-card p {
    color: #333;
    line-height: 1.7;
  }
  
  .testimonial-card .card-text,
  .testimonial-card .fw-bold,
  .testimonial-card .mb-0 {
    color: #333;
  }
  
  .testimonial-card .text-muted {
    color: #6c757d !important;
  }
  
  .testimonial-rating .fas.fa-star,
  .testimonial-rating .far.fa-star,
  .testimonial-rating .fas.fa-star-half-alt {
    color: #ffc107;
  }
  
  .testimonial-filter-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .badge {
    font-weight: 500;
  }
  
  .avatar-placeholder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  /* =============================================
     TIMELINE STYLES
     ============================================= */
  .timeline {
    position: relative;
    padding: 20px 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: #e0e0e0;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    background-color: #0d6efd;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    float: left;
    clear: both;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    float: right;
    clear: both;
  }
  
  .timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .timeline-content h4 {
    margin-bottom: 10px;
    color: #333;
  }
  
  .timeline-content p {
    margin-bottom: 0;
    color: #666;
  }
  
  /* =============================================
     SERVICE STYLES
     ============================================= */
  .service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    color: #333;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-card .card-body {
    padding: 30px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .service-icon i {
    font-size: 2rem;
    color: #0d6efd;
  }
  
  .service-card h4 {
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-card p {
    color: #666;
    margin-bottom: 20px;
  }
  
  .price-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 20px;
    font-weight: bold;
  }
  
  .services-list {
    list-style: none;
    padding-left: 0;
  }
  
  .services-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #333;
  }
  
  .services-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0d6efd;
  }
  
  .section-divider {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    margin: 15px auto 0;
  }
  
  /* =============================================
     SUSTAINABILITY STYLES
     ============================================= */
  .sustainability-stat-box {
    background-color: rgba(13, 110, 253, 0.1);
    color: #333;
  }
  
  .stat-icon i {
    color: #28a745;
  }
  
  .eco-practice-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .eco-practice-icon i {
    font-size: 2rem;
    color: #28a745;
  }
  
  /* =============================================
     ACHIEVEMENTS STYLES
     ============================================= */
  .milestone-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .milestone-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .milestone-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .achievements-list {
    list-style: none;
    padding-left: 0;
  }
  
  .achievements-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: #fff;
    border-left: 4px solid #0d6efd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
  }
  
  .achievements-list li:hover {
    transform: translateX(5px);
    border-left-color: #0056b3;
  }
  
  /* =============================================
     STORY PAGE SPECIFIC STYLES
     ============================================= */
  .story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .story-content p {
    color: #333;
    line-height: 1.8;
  }
  
  .usp-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
  }
  
  .usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .usp-card h4 {
    margin-bottom: 15px;
    color: #333;
  }
  
  .usp-card p {
    color: #666;
  }
  
  /* =============================================
     ANIMATION STYLES
     ============================================= */
  .animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .animate-item.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* =============================================
     MEDIA QUERIES
     ============================================= */
  @media (max-width: 991.98px) {
    .timeline:before {
      left: 20px;
    }
    
    .timeline-dot {
      left: 20px;
    }
    
    .timeline-content {
      width: calc(100% - 50px);
      float: right !important;
    }
    
    .testimonial-filter-group {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
    
    .py-custom {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }
  
  @media (max-width: 767.98px) {
    .vision-mission-card,
    .team-structure-card,
    .service-card {
      margin-bottom: 20px;
    }
    
    .about-hero,
    .leadership-hero,
    .story-hero,
    .sustainability-hero,
    .services-hero,
    .achievements-hero,
    .testimonial-hero {
      padding: 60px 0;
    }
    
    .milestone-gallery {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
  }
  
  /* =============================================
     DARK THEME ADJUSTMENTS
     ============================================= */
  body.dark-theme {
    color: #f8f9fa;
    background-color: #212529;
  }
  
  body.dark-theme .bg-light {
    background-color: #343a40 !important;
  }
  
  body.dark-theme .bg-light h2,
  body.dark-theme .bg-light h3,
  body.dark-theme .bg-light h4,
  body.dark-theme .bg-light h5,
  body.dark-theme .bg-light p,
  body.dark-theme .bg-light li {
    color: #f8f9fa;
  }
  
  body.dark-theme .vision-mission-card,
  body.dark-theme .team-member,
  body.dark-theme .team-structure-card,
  body.dark-theme .testimonial-card,
  body.dark-theme .service-card,
  body.dark-theme .stat-card,
  body.dark-theme .usp-card,
  body.dark-theme .timeline-content,
  body.dark-theme .achievements-list li {
    background-color: #343a40;
    color: #f8f9fa;
  }
  
  body.dark-theme .vision-mission-card p,
  body.dark-theme .testimonial-card p,
  body.dark-theme .team-member p,
  body.dark-theme .team-structure-card p,
  body.dark-theme .service-card p,
  body.dark-theme .timeline-content p,
  body.dark-theme .stat-card h5,
  body.dark-theme .usp-card p {
    color: #f8f9fa;
  }
  
  body.dark-theme .testimonial-card .card-text,
  body.dark-theme .testimonial-card .fw-bold,
  body.dark-theme .testimonial-card .text-muted {
    color: #f8f9fa !important;
  }