/* service-pages.css - Shared for all service pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Header Styles */
  .sticky-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo svg {
    display: block;
    height: 45px;
    width: auto;
  }
  
  .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
  }
  
  .nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: 0.2s;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    color: #0A4A7A;
    border-bottom: 2px solid #7ED957;
    padding-bottom: 4px;
  }
  
  .call-btn {
    background: #0A4A7A;
    color: white !important;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(10, 74, 122, 0.2);
  }
  
  .call-btn:hover {
    background: #063A60;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 74, 122, 0.3);
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0A4A7A;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-only {
    display: none;
  }
  
  /* Service Hero Section */
  .service-hero {
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -1px;
  }
  
  .service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0);
  }
  
  .service-hero-icon {
    font-size: 4rem;
    color: #7ED957;
    margin-bottom: 20px;
  }
  
  .service-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .service-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  /* Service Page */
  .service-page {
    padding: 60px 0 80px;
    max-width: 1000px;
  }
  
  .service-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f4fa;
    margin: 30px 0;
  }
  
  .service-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0A4A7A;
    margin-bottom: 40px;
    padding: 0;
    border-left: 4px solid #7ED957;
    padding-left: 25px;
  }
  
  .service-content h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: #0A4A7A;
    position: relative;
    padding-bottom: 10px;
  }
  
  .service-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7ED957;
  }
  
  .service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 25px 0;
    color: #444;
    padding: 0;
  }
  
  /* Service Features List */
  .service-features {
    list-style: none;
    margin: 30px 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
  }
  
  .service-features li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    background: #f0f7ff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eaeef5;
    transition: all 0.3s ease;
  }
  
  .service-features li:hover {
    transform: translateX(5px);
    border-color: #7ED957;
    box-shadow: 0 5px 15px rgba(126, 217, 87, 0.1);
  }
  
  .service-features i {
    color: #7ED957;
    font-size: 1.2rem;
  }
  
  /* Service Highlight Boxes */
  .service-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
  }
  
  .highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
    border-radius: 16px;
    border: 1px solid #eaeef5;
    transition: all 0.3s ease;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
    border-color: #7ED957;
  }
  
  .highlight-item i {
    font-size: 2.5rem;
    color: #7ED957;
    margin-bottom: 15px;
  }
  
  .highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0A4A7A;
  }
  
  .highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    padding: 0;
  }
  
  /* CTA Section */
  .service-cta {
    background: linear-gradient(135deg, #0A4A7A 0%, #063A60 100%);
    color: white;
    padding: 70px 50px;
    border-radius: 30px;
    text-align: center;
    margin-top: 70px;
    box-shadow: 0 20px 40px rgba(10, 74, 122, 0.2);
  }
  
  .service-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
  }
  
  .service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .service-cta .btn-primary {
    background: #7ED957;
    color: #0A4A7A;
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #7ED957;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .service-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  /* Footer */
  footer {
    background: #0A2A4A;
    color: #fff;
    padding: 70px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-top: 15px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    border-left: 3px solid #7ED957;
    padding-left: 15px;
  }
  
  footer ul {
    list-style: none;
  }
  
  footer ul li {
    margin-bottom: 12px;
  }
  
  footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
  }
  
  footer a:hover {
    color: #7ED957;
    padding-left: 5px;
  }
  
  .accent-green {
    color: #7ED957;
    margin-right: 10px;
  }
  
  .footer-bottom {
    border-top: 1px solid #1A4A6A;
    padding-top: 25px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Mobile Responsive */
  @media (max-width: 992px) {
    .service-hero h1 {
      font-size: 2.5rem;
    }
    
    .service-features {
      grid-template-columns: 1fr;
    }
    
    .service-highlight {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cta h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: flex;
    }
    
    .desktop-only {
      display: none;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 350px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 30px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      padding: 80px 30px 30px;
      z-index: 1000;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-menu ul {
      flex-direction: column;
      gap: 20px;
    }
    
    .nav-menu a {
      font-size: 1.1rem;
      display: block;
      padding: 10px 0;
    }
    
    .mobile-only {
      display: block;
      margin-top: 20px;
    }
    
    .mobile-call-btn {
      background: #0A4A7A;
      color: white !important;
      padding: 12px 20px;
      border-radius: 40px;
      text-align: center;
      font-weight: 600;
      display: block;
    }
    
    .service-hero {
      height: 350px;
    }
    
    .service-hero h1 {
      font-size: 2rem;
    }
    
    .service-hero p {
      font-size: 1rem;
    }
    
    .service-page {
      padding: 40px 0;
    }
    
    .service-content {
      padding: 30px 20px;
    }
    
    .service-content .lead {
      font-size: 1.1rem;
    }
    
    .service-content h2 {
      font-size: 1.6rem;
    }
    
    .service-content p {
      font-size: 1rem;
    }
    
    .service-highlight {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .service-cta {
      padding: 50px 25px;
      margin-top: 50px;
    }
    
    .service-cta h2 {
      font-size: 1.5rem;
    }
    
    .service-cta .btn-primary {
      padding: 15px 40px;
      font-size: 1rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .service-hero {
      height: 300px;
    }
    
    .service-hero h1 {
      font-size: 1.6rem;
    }
    
    .service-content {
      padding: 25px 15px;
    }
    
    .service-content h2 {
      font-size: 1.4rem;
    }
    
    .service-features li {
      font-size: 0.9rem;
      padding: 12px 15px;
    }
    
    .service-cta {
      padding: 40px 20px;
    }
    
    .service-cta h2 {
      font-size: 1.3rem;
    }
  }