/* contact.css */
* {
    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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .call-btn:hover {
    background: #063A60;
    transform: translateY(-2px);
  }
  
  .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-only {
    display: none;
  }
  
  /* Page Hero */
  .page-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .page-hero-content p {
    font-size: 1.2rem;
  }
  
  .contact-page {
    padding: 60px 0 80px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f4fa;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0A4A7A;
  }
  
  .contact-intro {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(10, 74, 122, 0.1);
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    background: #7ED957;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A4A7A;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #0A4A7A;
  }
  
  .info-content a {
    color: #0A4A7A;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
  }
  
  .info-content a:hover {
    color: #7ED957;
  }
  
  .info-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
  }
  
  .business-hours {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #eaeef5;
  }
  
  .business-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0A4A7A;
  }
  
  .hours-list {
    list-style: none;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eaeef5;
  }
  
  .hours-list li:last-child {
    border-bottom: none;
  }
  
  .contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f4fa;
  }
  
  .contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0A4A7A;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #e0e5ec;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #7ED957;
    box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.1);
  }
  
  .btn-submit {
    background: #7ED957;
    color: #0A4A7A;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-submit:hover {
    background: #5FB83A;
    transform: translateY(-2px);
  }
  
  .emergency-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #0A4A7A 0%, #063A60 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
  }
  
  .emergency-content i {
    font-size: 3rem;
    color: #7ED957;
    margin-bottom: 20px;
  }
  
  .emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .btn-emergency {
    display: inline-block;
    background: #7ED957;
    color: #0A4A7A;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #7ED957;
  }
  
  .btn-emergency:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
  }
  
   /* 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;
    margin-top: 15px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    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;
  }
  
  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;
  }
  
  /* Mobile Responsive */
  @media (max-width: 992px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @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;
      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;
    }
    
    .mobile-only {
      display: block;
    }
    
    .contact-info, .contact-form-container {
      padding: 30px 20px;
    }
    
    .emergency-cta {
      padding: 40px 20px;
    }
    
    .emergency-content h3 {
      font-size: 1.5rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .contact-info-item {
      flex-direction: column;
      text-align: center;
    }
    
    .info-icon {
      margin: 0 auto;
    }
    
    .hours-list li {
      flex-direction: column;
      gap: 5px;
    }
  }