/* Eco-Tourism Itinerary Design Studio - Main CSS */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors */
  --eco-green: #94b294;
  --nature-blue: #95d8f9;
  --earth-brown: #f5c781;
  --sunset-coral: #ffb7b4;
  --forest-mint: #a9e7da;
  
  /* Light Shades */
  --eco-green-light: #cbe7cc;
  --nature-blue-light: #afe4ff;
  --earth-brown-light: #e2e395;
  --sunset-coral-light: #fdaeb4;
  --forest-mint-light: #effcfd;
  
  /* Dark Shades */
  --eco-green-dark: #486021;
  --nature-blue-dark: #3d73b3;
  --earth-brown-dark: #867252;
  --sunset-coral-dark: #cf535f;
  --forest-mint-dark: #46bdaa;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #707c91;
  --dark-gray: #24282c;
  --black: #000000;
}

/* Base Typography - Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Conservative Heading Sizes */
h1 {
  font-size: 2.55rem;
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--nature-blue-dark);
  margin-bottom: 1.11rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 500;
  color: var(--earth-brown-dark);
  margin-bottom: 0.89rem;
}

h4 {
  font-size: 1.34rem;
  font-weight: 500;
  color: var(--sunset-coral-dark);
  margin-bottom: 0.83rem;
}

h5 {
  font-size: 1.17rem;
  font-weight: 500;
  color: var(--forest-mint-dark);
  margin-bottom: 0.73rem;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0.63rem;
}

/* Conservative Paragraph Sizing */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.53rem;
  font-weight: 600;
  color: var(--eco-green-dark);
}

/* Navbar Scroll Effects */
.navbar {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar.scrolled .navbar-brand {
  font-size: 1.41rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-green-light), var(--nature-blue-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--forest-mint-light);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-decorative-1 {
  top: 10%;
  right: 15%;
}

.hero-decorative-2 {
  bottom: 15%;
  left: 10%;
  background: var(--sunset-coral-light);
}

/* Progress Bar */
.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: var(--light-gray);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: none; /* Preloader disabled */
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-gray);
  border-top: 3px solid var(--eco-green);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--eco-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: var(--eco-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  font-size: 1.29rem;
}

/* Services Section */
.services-card {
  background: var(--white);
  border: none;
  border-radius: 19px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-8px);
}

.services-card .card-header {
  background: var(--eco-green-light);
  border-radius: 110px 110px 0 0;
  padding: 1.5rem;
  border: none;
}

.services-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-green-dark);
}

/* About Features */
.about-feature-card {
  background: var(--white);
  border: 6px solid var(--nature-blue-light);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.about-feature-card:hover {
  border-color: var(--nature-blue-dark);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--nature-blue-dark);
  margin-bottom: 1rem;
}

/* Team Section */
.team-card {
  background: var(--white);
  border: none;
  border-radius: 19px;
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

.team-role {
  color: var(--earth-brown-dark);
  font-weight: 500;
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--sunset-coral-light);
  font-weight: bold;
}

.review-author {
  color: var(--forest-mint-dark);
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-bottom: 0.74rem;
}

.faq-answer {
  color: var(--gray);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process/Timeline Section */
.process-card, .timeline-card {
  background: var(--white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.77rem;
  position: relative;
}

.process-number, .timeline-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--sunset-coral);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
}

.contact-form .form-control {
  border: 2px solid var(--nature-blue-light);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--nature-blue-dark);
  box-shadow: 0 0 0 0.2rem rgba(132, 200, 255, 0.25);
}

.contact-info-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.contact-info-icon {
  font-size: 2.62rem;
  color: var(--forest-mint-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: var(--eco-green);
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--eco-green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--nature-blue);
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--nature-blue-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--gray);
}

.footer h5 {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer a {
  color: var(--nature-blue-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--eco-green-dark);
}

/* Utility Classes */
.text-eco-green { color: var(--eco-green-dark); }
.text-nature-blue { color: var(--nature-blue-dark); }
.text-earth-brown { color: var(--earth-brown-dark); }
.text-sunset-coral { color: var(--sunset-coral-dark); }
.text-forest-mint { color: var(--forest-mint-dark); }

.bg-eco-green { background-color: var(--eco-green-light); }
.bg-nature-blue { background-color: var(--nature-blue-light); }
.bg-earth-brown { background-color: var(--earth-brown-light); }
.bg-sunset-coral { background-color: var(--sunset-coral-light); }
.bg-forest-mint { background-color: var(--forest-mint-light); }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .back-to-top:hover {
    transform: none;
  }
  
  .services-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  z-index: 9999;
  animation: notification-slide-in 0.3s ease;
}

.notification-info {
  background: var(--nature-blue);
}

.notification-success {
  background: var(--eco-green);
}

.notification-warning {
  background: var(--sunset-coral);
}

.notification-error {
  background: var(--earth-brown-dark);
}

@keyframes notification-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-link {
  color: var(--nature-blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--nature-blue);
}

/* Career Section */
.career-card {
  background: var(--white);
  border: 2px solid var(--earth-brown-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.78rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--earth-brown-dark);
}

.career-role {
  color: var(--earth-brown-dark);
  font-weight: 600;
  font-size: 0.98rem;
}

/* Price Plan Section */
.priceplan-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.priceplan-card.featured {
  border: 3px solid var(--sunset-coral);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--sunset-coral-dark);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Case Study Section */
.casestudy-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.casestudy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--forest-mint-dark);
  border-radius: 15px 0 0 15px;
}

/* Core Info Section */
.coreinfo-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.80rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.coreinfo-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.61rem;
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--light-gray);
  border-top: 2px solid var(--eco-green);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

/* Responsive Navigation */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler.active {
  transform: rotate(90deg);
} 

.hero-section h1 {
    padding-top: 125px;
}


/* 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;
    }
}
