/* Extracted from find-our-doctor.php head style block 1 */
body {
      background: linear-gradient(135deg, #f5f9fb 0%, #eef6fa 100%);
    }

    /* Hero Section */
    .cancer-care-hero {
      background: linear-gradient(135deg, #003c71 0%, #005a9c 50%, #0d7bb0 100%);
      position: relative;
      overflow: hidden;
    }

    .cancer-care-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 140, 26, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    /* Header Bar */
    .header-bar {
      background: linear-gradient(90deg, #003c71 0%, #005a9c 100%);
      color: #fff;
      text-align: center;
      padding: 16px 12px;
      font-size: 18px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 60, 113, 0.15);
      letter-spacing: 0.5px;
    }

    .call-box {
      background: linear-gradient(135deg, #ff8c1a, #ff6600);
      color: #fff;
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 600;
      margin-left: 15px;
      box-shadow: 0 4px 15px rgba(255, 140, 26, 0.3);
      transition: all 0.3s ease;
    }

    .call-box:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
    }

    /* Filter Box */
    .filter-box {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .filter-box:hover {
      box-shadow: 0 8px 25px rgba(0, 60, 113, 0.12);
    }

    .filter-box h5 {
      color: #003c71;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .filter-box h6 {
      color: #005a9c;
      font-weight: 600;
      font-size: 14px;
      margin-top: 15px;
      margin-bottom: 12px;
    }

    .filter-box .form-check {
      margin-bottom: 10px;
    }

    .filter-box .form-check-input {
      border: 2px solid #ddd;
      border-radius: 4px;
      width: 18px;
      height: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-box .form-check-input:checked {
      background-color: #ff8c1a;
      border-color: #ff8c1a;
    }

    .filter-box .form-check-label {
      font-size: 14px;
      color: #333;
      cursor: pointer;
      margin-left: 8px;
    }

    .filter-box .btn {
      color: #003c71;
      font-weight: 600;
      padding: 12px 0;
      border: none;
      text-align: left;
      transition: all 0.3s ease;
    }

    .filter-box .btn:hover {
      color: #ff8c1a;
    }

    /* Search Box */
    .search-box input {
      border-radius: 12px;
      padding: 15px 20px;
      border: 2px solid #e0e0e0;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s ease;
      background: #fff;
    }

    .search-box input:focus {
      border-color: #ff8c1a;
      box-shadow: 0 4px 12px rgba(255, 140, 26, 0.15);
      outline: none;
    }

    .search-box input::placeholder {
      color: #999;
    }

    /* Doctor Card */
    .doctor-card {
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 20px;
      background: #fff;
      margin-bottom: 20px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid #f0f0f0;
      display: flex;
      align-items: flex-start;
    }

    .doctor-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(0, 60, 113, 0.15);
      border-color: rgba(255, 140, 26, 0.2);
    }

    .doctor-card img {
      border-radius: 12px;
      width: 120px;
      height: 120px;
      object-fit: cover;
      flex-shrink: 0;
      border: 3px solid #f0f0f0;
      transition: transform 0.3s ease;
    }

    .doctor-card:hover img {
      transform: scale(1.05);
    }

    .doctor-card .ms-3 {
      flex-grow: 1;
    }

    .doctor-card h5 {
      color: #003c71;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .doctor-card strong {
      color: #005a9c;
      font-size: 14px;
      display: block;
      margin-bottom: 10px;
    }

    .doctor-card a {
      font-size: 14px;
      font-weight: 600;
      color: #000;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .doctor-card a:hover {
      color: #000;
      text-decoration: underline;
    }

    /* Book Button */
    .btn-book {
      background: linear-gradient(135deg, #ff8c1a, #ff6600);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 13px;
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background: linear-gradient(135deg, #ff7a00, #ff5500);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 140, 26, 0.3);
      color: #fff;
    }

    /* Callback Box */
    .callback-box {
      border: 1px solid #f0f0f0;
      border-radius: 15px;
      background: #fff;
      margin: 30px auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .callback-header {
      background: linear-gradient(135deg, #003c71 0%, #005a9c 100%);
      color: #fff;
      padding: 18px 25px;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.5px;
    }

    .callback-body {
      padding: 30px 25px;
    }

    .callback-body .form-control {
      height: 48px;
      border-radius: 10px;
      border: 2px solid #e0e0e0;
      font-size: 14px;
      padding: 12px 16px;
      transition: all 0.3s ease;
    }

    .callback-body .form-control:focus {
      border-color: #ff8c1a;
      box-shadow: 0 4px 12px rgba(255, 140, 26, 0.15);
      outline: none;
    }

    .callback-body .form-control::placeholder {
      color: #999;
    }

    .btn-request {
      background: linear-gradient(135deg, #ff8c1a, #ff6600);
      color: #fff;
      font-weight: 700;
      height: 48px;
      border-radius: 10px;
      border: none;
      transition: all 0.3s ease;
      font-size: 14px;
      letter-spacing: 0.5px;
    }

    .btn-request:hover {
      background: linear-gradient(135deg, #ff7a00, #ff5500);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 140, 26, 0.3);
      color: #fff;
    }

    .whatsapp-check {
      font-size: 13px;
      margin-top: 15px;
      color: #666;
    }

    .whatsapp-check .form-check-input {
      border: 2px solid #ddd;
      width: 18px;
      height: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .whatsapp-check .form-check-input:checked {
      background-color: #ff8c1a;
      border-color: #ff8c1a;
    }

    .whatsapp-check a {
      color: #005a9c;
      text-decoration: none;
      font-weight: 600;
    }

    .whatsapp-check a:hover {
      text-decoration: underline;
    }

    .flag-box {
      display: flex;
      align-items: center;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      padding: 0 12px;
      height: 48px;
      background: #fff;
      transition: all 0.3s ease;
    }

    .flag-box:focus-within {
      border-color: #ff8c1a;
      box-shadow: 0 4px 12px rgba(255, 140, 26, 0.15);
    }

    .flag-box select {
      border: none;
      background: transparent;
      outline: none;
      font-weight: 500;
      cursor: pointer;
    }

    .flag-box input {
      border: none;
      outline: none;
      width: 100%;
      background: transparent;
      font-size: 14px;
      margin-left: 8px;
    }

    .flag-box input::placeholder {
      color: #999;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: transparent;
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .breadcrumb-item a:hover {
      color: #fff;
    }

    .breadcrumb-item.active {
      color: #fff;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header-bar {
        flex-direction: column;
        padding: 12px;
        font-size: 14px;
      }

      .call-box {
        margin-left: 0;
        margin-top: 10px;
      }

      .doctor-card {
        flex-direction: column;
        text-align: center;
      }

      .doctor-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
      }

      .doctor-card .ms-3 {
        margin-left: 0 !important;
      }

      .callback-body {
        padding: 20px;
      }

      .filter-box {
        padding: 20px;
      }
    }

