/* ====================================================================
   BICYCLE REPAIR SERVICE - MAIN CSS
   Conservative font sizes, high contrast pastel colors, Bootstrap 5 base
   ==================================================================== */

:root {
  /* Color Palette - High Contrast Pastel Colors */
  --primary-color: #5c8af7;
  --secondary-color: #92d62d;
  --accent-color: #ff8b1d;
  --tertiary-color: #d70cf0;
  --quaternary-color: #59e2b1;
  
  /* Light/Dark Shades */
  --primary-light: #cce1ef;
  --primary-dark: #3b5593;
  --secondary-light: #eff1ed;
  --secondary-dark: #41644e;
  --accent-light: #fff4e1;
  --accent-dark: #e5bf47;
  --tertiary-light: #fbedff;
  --tertiary-dark: #960696;
  --quaternary-light: #eaecec;
  --quaternary-dark: #2d9b9f;
  
  /* Text Colors */
  --text-primary: #304255;
  --text-secondary: #4a5677;
  --text-light: #647c92;
  --text-white: #FFFFFF;
  
  /* Background Colors */
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #0c1016;
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 17px;
}

/* ====================================================================
   BASE STYLES & RESET
   ==================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====================================================================
   TYPOGRAPHY
   ==================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ====================================================================
   HEADER & NAVIGATION
   ==================================================================== */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(67, 114, 204, 0.10);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--quaternary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TUS_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

#hero-title-1 {
  font-size: 3.55rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.61rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#hero-subtitle-1 {
  font-size: 1.56rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

#hero-desc-1 {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-28px); }
}

/* ====================================================================
   SECTION STYLES
   ==================================================================== */

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  font-size: var(--font-size-h2);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--bg-light);
}

.feature-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--bg-white);
}

.service-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 37px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 27px 50px rgba(0,0,0,0.2);
  border-color: var(--accent-color);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.61rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--primary-light);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--bg-white);
}

.price-card {
  background: var(--bg-white);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 21px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 3px solid var(--primary-light);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-13px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-card .price small {
  font-size: 1rem;
  color: var(--text-light);
}

/* Team Section */
.team-section {
  background: var(--bg-light);
}

.team-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 29px 50px rgba(0,0,0,0.2);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.63rem;
  border: 5px solid var(--primary-light);
}

.team-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.61rem;
}

.team-card p {
  color: var(--accent-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-white);
}

.review-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-white);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-desc {
  color: var(--text-white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--bg-white);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 156, 38, 0.20);
}

.form-label {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.60rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info i {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.64rem;
}

/* Case Study Section */
.casestudy-section {
  background: linear-gradient(135deg, var(--tertiary-light) 0%, var(--quaternary-light) 100%);
}

.case-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--tertiary-color);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 29px 50px rgba(0,0,0,0.2);
}

.case-card h4 {
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  background: var(--bg-light);
}

.process-item {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-top: 5rem;
}

.process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.process-section .col-lg-2:nth-child(1) .process-item::before { content: '1'; }
.process-section .col-lg-2:nth-child(2) .process-item::before { content: '2'; }
.process-section .col-lg-2:nth-child(3) .process-item::before { content: '3'; }
.process-section .col-lg-2:nth-child(4) .process-item::before { content: '4'; }
.process-section .col-lg-2:nth-child(5) .process-item::before { content: '5'; }

.process-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--bg-white);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
  border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.64rem;
}

/* Career Section */
.career-section {
  background: var(--bg-light);
}

.career-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--accent-color);
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.career-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.career-role {
  color: var(--accent-color);
  font-weight: 600;
  display: block;
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--bg-white);
}

.coreinfo-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--quaternary-color);
}

.coreinfo-card i {
  font-size: 3rem;
  color: var(--quaternary-color);
  margin-bottom: 1rem;
}

.coreinfo-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background: var(--bg-light);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border-color: var(--secondary-color);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-card .btn {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border: 2px solid var(--secondary-color);
  border-radius: 25px;
  display: inline-block;
}

.blog-card .btn:hover {
  background: var(--secondary-color);
  color: var(--text-white);
}

/* FAQ Section */
.faq-section {
  background: var(--bg-white);
}

.faq-card {
  background: var(--bg-light);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-card.active .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--primary-color);
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image {
  max-width: 100px;
  height: auto;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--quaternary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}




/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
