/* ================================
   Contact Page Styles
   ================================ */

   body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-heading h2 {
    font-size: 2rem;
    color: var(--brand, #1a4c9e);
    margin-bottom: 10px;
  }
  
  .section-heading p {
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ===== Clinic Section ===== */
  .clinic-section {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(2,6,23,0.06);
    padding: 30px;
    margin-bottom: 50px;
  }
  
  .clinic-section h3 {
    color: var(--brand-2, #072c6b);
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .clinic-section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .clinic-section a {
    color: var(--brand);
    text-decoration: none;
  }
  .clinic-section a:hover {
    text-decoration: underline;
  }
  
  /* ===== Contact Grid ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .contact-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(2,6,23,0.06);
  }
  
  .contact-box h3 {
    color: var(--brand-2, #072c6b);
    margin-bottom: 15px;
  }
  
  .contact-box p {
    color: #444;
    margin-bottom: 5px;
  }
  
  /* ===== Form Elements ===== */
  .form-group {
    margin-bottom: 18px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  input:focus,
  textarea:focus {
    border-color: var(--brand);
    outline: none;
  }
  
  /* ===== Buttons ===== */
  .btn {
    background-color: var(--brand, #1a4c9e);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
  }
  
  .btn:hover {
    background-color: var(--brand-2, #072c6b);
  }
  
  /* ===== Map ===== */
  .map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
    border-radius: 12px;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      margin: 60px auto;
    }
  
    .clinic-section {
      padding: 20px;
    }
  
    .contact-box {
      padding: 20px;
    }
  }  

  /* Make the navbar solid and non-overlapping on the contact page only */
.contact-page .navbar{
    position: sticky;          /* replaces absolute so it takes space */
    top: 0;
    background: linear-gradient(180deg, rgba(26,76,158,0.95), rgba(7,44,107,0.95));
    backdrop-filter: blur(8px) saturate(140%);
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(2,6,23,0.12);
  }
  
  /* Slightly bump nav padding for a crisp look */
  .contact-page .nav-container{
    padding: 16px 24px;
  }
  
  /* Ensure contrast on solid header */
  .contact-page .logo-text,
  .contact-page .nav-links a { color: #fff; }
  .contact-page .nav-links a:hover { color: #cfe1ff; }
  
  /* Safety margin in case a browser ignores sticky space (rare) */
  .contact-page .contact-container{
    margin-top: 24px;
  }

  /* ===== Clinic Section Title Enhancement ===== */
.clinic-section h3 {
    text-align: center;
    font-size: 2rem;                /* Larger heading */
    font-weight: 800;               /* Bold and strong */
    color: var(--brand, #1a4c9e);   /* Use your brand color */
    margin-bottom: 24px;            /* Add breathing room below */
    letter-spacing: 0.3px;
  }
  
  /* Optional: make the first paragraph narrower and centered */
  .clinic-section p:first-of-type {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 20px;
      background: rgba(0, 0, 0, 0.9);
      border-radius: 10px;
      padding: 20px;
      gap: 18px;
      width: 200px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }
  
    .nav-links.show {
      display: flex;
    }
  }
  