/* Zero-Emissions Courier Service - Main Styles */

:root {
  /* Primary Color Palette - Eco-friendly theme */
  --primary-green: #2d5a27;
  --primary-green-light: #4a7c59;
  --primary-green-dark: #1a3318;
  
  --secondary-blue: #1e40af;
  --secondary-blue-light: #3b82f6;
  --secondary-blue-dark: #1e3a8a;
  
  --accent-orange: #ea580c;
  --accent-orange-light: #fb923c;
  --accent-orange-dark: #c2410c;
  
  --neutral-gray: #64748b;
  --neutral-gray-light: #94a3b8;
  --neutral-gray-dark: #475569;
  
  --text-dark: #1e293b;
  --text-light: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
}

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

/* Conservative typography */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  display: flex;
  align-items: center;
}

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

.hero-image {
  position: relative;
}

.decorative-blob {
  position: absolute;
  background: var(--primary-green-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  background: var(--accent-orange);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 30px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  height: 250px;
  object-fit: cover;
  background: var(--neutral-gray-light);
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 12px;
  background: var(--bg-light);
  padding: 2rem;
  height: 100%;
}

.review-stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--neutral-gray-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--bg-light);
  font-weight: 600;
  margin-bottom: 0;
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
}

.faq-answer {
  padding: 1.5rem;
  margin-bottom: 0;
  background: var(--bg-white);
  border-radius: 0 0 8px 8px;
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--neutral-gray-light);
}

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

.footer a {
  color: var(--neutral-gray-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text-light);
}

.footer-logo {
  color: var(--primary-green-light);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

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

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Space page */
#space {
  min-height: 50vh;
  background: var(--bg-light);
}

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

/* Additional page sections */
.add-page-section {
  padding: 4rem 0;
}

.add-page-section:nth-child(even) {
  background: var(--bg-light);
}

.add-page-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

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