/* Ethical Travel Package Curator - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-sage: #8FBC94;
  --primary-earth: #C4A484;
  --primary-ocean: #7FB3D3;
  --primary-sunset: #F4A261;
  --primary-lavender: #B19CD9;
  
  /* Light shades */
  --light-sage: #E8F5E8;
  --light-earth: #F5F0EA;
  --light-ocean: #E6F3FA;
  --light-sunset: #FDF4E8;
  --light-lavender: #F3F0FB;
  
  /* Dark shades */
  --dark-sage: #5A7A5E;
  --dark-earth: #8B6F54;
  --dark-ocean: #4A7A9A;
  --dark-sunset: #E07A00;
  --dark-lavender: #8B6BAB;
  
  /* Neutral colors */
  --text-primary: #2C3E50;
  --text-secondary: #5A6C7D;
  --text-light: #95A5A6;
  --bg-light: #FAFBFC;
  --border-color: #E8ECEF;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
    overflow-x: hidden;
}

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

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

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

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-sage);
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-ocean);
  bottom: 20%;
  left: 10%;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-small-padding {
  padding: 3rem 0;
}

/* Card Styles */
.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2rem;
  text-align: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-sage);
  font-size: 1.5rem;
}

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

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  padding: 2rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-sage);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-sage);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--text-secondary);
  margin: 0;
}

/* Price Plan Cards */
.price-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 15px;
  position: relative;
}

.price-card.featured {
  background: var(--light-ocean);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-sunset);
  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(--border-color);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-outline-custom {
  border: 2px solid var(--primary-sage);
  color: var(--primary-sage);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary-sage);
  color: white;
}

/* Contact Form */
.contact-form {
  background: var(--light-sage);
  padding: 3rem;
  border-radius: 15px;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 148, 0.25);
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Process/Timeline Items */
.process-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-ocean);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--light-earth);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
}

/* Career Cards */
.career-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-lavender);
}

/* Core Info Grid */
.coreinfo-item {
  background: var(--light-lavender);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.coreinfo-icon {
  font-size: 2rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage); }
.text-earth { color: var(--primary-earth); }
.text-ocean { color: var(--primary-ocean); }
.text-sunset { color: var(--primary-sunset); }
.text-lavender { color: var(--primary-lavender); }

.bg-sage { background-color: var(--light-sage); }
.bg-earth { background-color: var(--light-earth); }
.bg-ocean { background-color: var(--light-ocean); }
.bg-sunset { background-color: var(--light-sunset); }
.bg-lavender { background-color: var(--light-lavender); }



/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
