/* ==================================
   BICYCLE COURIER SERVICE - MAIN CSS
   ================================== */

/* Color Palette Variables */
:root {
  --primary-1: #2563eb;
  --primary-1-light: #60a5fa;
  --primary-1-dark: #1e40af;
  
  --primary-2: #059669;
  --primary-2-light: #34d399;
  --primary-2-dark: #047857;
  
  --primary-3: #dc2626;
  --primary-3-light: #f87171;
  --primary-3-dark: #b91c1c;
  
  --primary-4: #7c3aed;
  --primary-4-light: #a78bfa;
  --primary-4-dark: #5b21b6;
  
  --primary-5: #f59e0b;
  --primary-5-light: #fbbf24;
  --primary-5-dark: #d97706;
  
  --bg-light: #f8fafc;
  --bg-dark: #1e293b;
  --text-light: #64748b;
  --text-dark: #0f172a;
  --border-light: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-1) !important;
}

/* Header Styles */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* About Section */
.about {
  background: var(--bg-light);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.about-feature h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-feature p {
  color: var(--text-light);
}

/* Services Section */
.services {
  background: var(--white);
}

.service-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  border-color: var(--primary-1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.service-features li i {
  color: var(--primary-2);
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-1);
}

/* Features Section */
.features {
  background: var(--bg-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--white);
}

.price-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  border-color: var(--primary-1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-item.featured {
  border-color: var(--primary-1);
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-1) 100%);
  color: var(--white);
}

.price-item.featured h4,
.price-item.featured .price {
  color: var(--white);
}

.price-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.price-features li i {
  color: var(--primary-2);
  margin-right: 0.5rem;
}

.price-item.featured .price-features li {
  color: rgba(255, 255, 255, 0.9);
}

.price-item.featured .price-features li i {
  color: var(--white);
}

/* Team Section */
.team {
  background: var(--bg-light);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-1);
}

.team-member h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.review-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--primary-1);
}

.review-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-1);
  line-height: 1;
}

.review-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Case Study Section */
.casestudy {
  background: var(--bg-light);
}

.case-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-item:hover {
  transform: translateY(-5px);
}

.case-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.case-item p {
  color: var(--text-light);
}

/* Process Section */
.process {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
}

.process-item:hover {
  transform: translateY(-5px);
}

.process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.process-container {
  counter-reset: step-counter;
}

.process-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-item p {
  color: var(--text-light);
}

/* Timeline Section */
.timeline {
  background: var(--bg-light);
}

.timeline-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--primary-2);
}

.timeline-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.timeline-item p {
  color: var(--text-light);
}

/* Career Section */
.career {
  background: var(--white);
}

.career-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.career-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.career-role {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo {
  background: var(--bg-light);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.coreinfo-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--text-light);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form .form-control {
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding: 2rem;
}

.contact-info h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-1);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog {
  background: var(--bg-light);
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.blog-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-1);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-item {
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 2px solid var(--border-light);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}

.faq-answer.active {
  max-height: 200px;
  padding: 1.5rem;
}

/* Gallery Section */
.gallery {
  background: var(--bg-light);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-1);
}

.footer .site-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-1-dark) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-1-dark) 0%, var(--primary-1) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-2-dark) 100%);
  color: var(--white);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-2-dark) 0%, var(--primary-2) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-1);
  color: var(--white);
  transform: translateY(-2px);
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-3) 0%, var(--primary-4) 100%);
}

.text-primary {
  color: var(--primary-1) !important;
}

.text-secondary {
  color: var(--primary-2) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--bg-light);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .review-item,
  .case-item,
  .process-item,
  .timeline-item,
  .career-item,
  .coreinfo-item,
  .blog-item,
  .faq-item {
    padding: 1.5rem;
  }
} 


/* 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;
}

.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;
    }
}
