/* service-detail.css */
:root {
    --orange: #FF6B35;
    --blue: #004E89;
    --light-blue: #E6F2FF;
    --white: #ffffff;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
  }
  
  /* Base Styles */
  body {
    font-family: var(--body-font);
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none !important;
  }
/* Navbar Base Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.logo img {
    height: 40px;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--orange);
}

/* CTA Button */
.cta-button {
    background: var(--orange);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fa-phone {
  margin-right: 0.5rem;
}
.cta-button:hover {
    background: #E05A2B; /* Darker orange on hover */
}

/* Mobile Menu Toggle (Hidden by Default) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--blue);
    transition: all 0.3s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 2rem 0;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }
}

  
  /* Service Hero */
  .service-hero {
    background: linear-gradient(rgba(0, 78, 137, 0.8), rgba(0, 78, 137, 0.9)), 
                url('../public/images/foot-orthotics-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .service-hero h1 span {
    color: var(--orange);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb span {
    color: var(--orange);
    font-weight: 500;
  }
  
  /* Service Overview */
  .service-overview {
    padding: 60px 0;
  }
  
  .overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .overview-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--blue);
  }
  
  .overview-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .benefits-list {
    margin-top: 2rem;
  }
  
  .benefits-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--blue);
  }
  
  .benefits-list ul {
    list-style: none;
    padding: 0;
  }
  
  .benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
  }
  
  .benefits-list i {
    color: var(--orange);
    position: absolute;
    left: 0;
    top: 0.2rem;
  }
  
  .overview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .overview-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  /* Conditions Treated */
  .conditions-treated {
    background-color: var(--light-blue);
    padding: 60px 0;
    text-align: center;
  }
  
  .conditions-treated h2 {
    margin-bottom: 3rem;
  }
  
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .condition-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .condition-card:hover {
    transform: translateY(-5px);
  }
  
  .condition-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
  }
  
  .condition-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .condition-card p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Our Process */
  .our-process {
    padding: 60px 0;
    text-align: center;
  }
  
  .our-process h2 {
    margin-bottom: 3rem;
  }
  
  .our-process h2 span {
    color: var(--orange);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
  }
  
  .process-step {
    position: relative;
    padding-left: 70px;
  }
  
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .process-step p {
    color: #666;
    font-size: 0.95rem;
  }
  
  /* Testimonial */
  .testimonial {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  
  blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .patient-info {
    text-align: right;
  }
  
  .patient-name {
    font-weight: 600;
    color: var(--blue);
  }
  
  .patient-condition {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* CTA Section */
  .service-cta {
    background: var(--blue);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .btn-primary {
    background: var(--orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-primary:hover {
    background: #E05A2B;
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .overview-grid {
      grid-template-columns: 1fr;
    }
    
    .process-steps {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .service-hero h1 {
      font-size: 2rem;
    }
  }
  /* Update hamburger menu to show bars instead of text */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--blue);
    transition: all 0.3s;
}

/* Fix the incorrect icon class */
.benefits-list li i.fas.fa-check-column {
    display: none; /* Hide the incorrect icon */
}

.benefits-list li i.fas.fa-check-column:before {
    content: "\f058"; /* Replace with check-circle icon */
}

/* Add missing footer styles */
.site-footer {
    background-color: var(--blue);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-cta {
    background: var(--orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-cta:hover {
    background: #E05A2B;
}

/* Fix spacing in service overview */
.overview-content {
    padding-right: 1rem;
}

/* Ensure images don't overflow containers */
.overview-image img, 
.condition-icon i {
    max-width: 100%;
    height: auto;
}

/* Better alignment for process steps */
.process-step {
    padding-left: 80px;
    margin-bottom: 1.5rem;
}

.step-number {
    top: -5px;
}
.service-hero {
  background: linear-gradient(rgba(0, 78, 137, 0.8), rgba(0, 78, 137, 0.9)), 
              url('../public/images/knee-bracing-bg.jpg') no-repeat center center;
  background-size: cover;
}

/* Specific joint bracing styles */
.condition-icon .fa-joint {
  font-size: 1.8rem; /* Adjust size for joint icon */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-hero h1 {
      font-size: 2rem;
  }
  
  .overview-grid {
      grid-template-columns: 1fr;
  }
  
  .process-steps {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
}
