/* Ethical Travel Package Curator - Main Styles */

/* Color Palette - Pastel High Contrast Colors for Ethical Travel */
:root {
  /* Primary Colors */
  --eco-green: #a8e6a3;
  --earth-blue: #87ceeb;
  --sunset-coral: #ffb3ba;
  --nature-yellow: #ffffba;
  --forest-purple: #c3a8e6;
  
  /* Light Shades */
  --eco-green-light: #d4f2d2;
  --earth-blue-light: #c3e6f7;
  --sunset-coral-light: #ffd9dc;
  --nature-yellow-light: #ffffdc;
  --forest-purple-light: #e1d4f2;
  
  /* Dark Shades */
  --eco-green-dark: #7fc47a;
  --earth-blue-dark: #5fb3d8;
  --sunset-coral-dark: #ff9aa0;
  --nature-yellow-dark: #ffffaa;
  --forest-purple-dark: #a68ad4;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --black: #000000;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
    overflow-x: hidden;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eco-green-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-green-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--earth-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--nature-yellow-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--eco-green);
  margin-bottom: 1rem;
}

/* Services */
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  border: 2px solid var(--eco-green-light);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img {
  width: 100%;
  height: 200px;
  background-color: var(--earth-blue-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-green-dark);
  margin-top: 1rem;
}

/* Features */
.feature-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--eco-green);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--eco-green);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid var(--earth-blue-light);
}

.price-card.featured {
  border-color: var(--eco-green);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-green-dark);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--sunset-coral-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-size: 1.2rem;
}

/* Reviews */
.review-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--sunset-coral);
}

.review-author {
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-top: 1rem;
}

/* Case Studies */
.case-study-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--forest-purple);
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--nature-yellow);
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--earth-blue);
}

/* Career */
.career-position {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-top: 3px solid var(--forest-purple);
}

/* Core Info */
.coreinfo-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(168, 230, 163, 0.25);
}

.btn-primary {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
  transform: translateY(-2px);
}

/* FAQ */
.faq-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--nature-yellow);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-gray);
  margin: 0;
}

/* Blog */
.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background-color: var(--forest-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
}

.blog-content {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #a8e6a3;
  text-decoration: underline;
}

.footer p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer ul li {
  color: #d0d0d0;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 2px solid #333333;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p,
.footer-bottom small {
  color: #b0b0b0 !important;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  width: 100%;
  height: 250px;
  background-color: var(--earth-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background-color: var(--eco-green-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.text-eco-green { color: var(--eco-green-dark); }
.text-earth-blue { color: var(--earth-blue-dark); }
.text-sunset-coral { color: var(--sunset-coral-dark); }
.text-nature-yellow { color: var(--nature-yellow-dark); }
.text-forest-purple { color: var(--forest-purple-dark); }

.bg-eco-green { background-color: var(--eco-green-light); }
.bg-earth-blue { background-color: var(--earth-blue-light); }
.bg-sunset-coral { background-color: var(--sunset-coral-light); }
.bg-nature-yellow { background-color: var(--nature-yellow-light); }
.bg-forest-purple { background-color: var(--forest-purple-light); }



/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
